android – 使用ng-href与geo:在Cordova中的Uri不起作用

我正试图在科尔多瓦使用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):/);
}]);

希望这可以帮助你,谢谢.

上一篇:android – 关闭应用程序后,GPS更新不会关闭


下一篇:【转】高可用Redis(六):瑞士军刀之bitmap,HyperLoglog和GEO