我正试图在科尔多瓦使用geo:uri.
它适用于我做的事情:
<a href="geo:0,0q=12345+jefferson+st">link1</a>
但如果我做像角度的事情:
<a ng-href="{{location}}">{{location}}>link2</a>
和
location = "geo:0,0q=12345+jefferson+st";
不起作用.
有任何想法吗?
解决方法:
您需要使用$compileProvider使用正则表达式将geo:显式添加到Angular的白名单中.否则,当使用$compileProvider使用无法识别的URL时,Angular将为非白名单的href URL添加不安全的前缀:
配置
var app = angular.module( 'app', [] )
.config( ['$compileProvider', function( $compileProvider ){
$compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|geo):/);
}]);
希望这可以帮助你,谢谢.