无法在phonegap(angularjs)中显示联系人照片

时间:2016-06-23 15:39:48

标签: android angularjs cordova

我试图显示联系人照片。

我已经获得了我的联系人照片列表, 但是当我试图在视图中显示它们时,我什么都没有(除了标准的破碎图像)

<img ng-src="value" height="28px" width="28px">

- &GT;在这里,valuecontent://com.android.contacts[...]photo

遵循此Unable to display contact photo in phonegap through angularjs

我试图添加

config(['$compileProvider', function($compileProvider) {
           $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|file|blob|content):|data:image\//);
       }]);

在我的配置文件的末尾,但我遇到了错误(无法解析配置) 所以我编辑我的文件是这样的:

...


.config(function($routeProvider, $compileProvider) {
  $routeProvider
    .when(.....)
     // rest of routing

  $compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|file|blob|content):|data:image\//);

});

...

但在这里相同,没有任何改变。

我做错了什么?

0 个答案:

没有答案
相关问题