无法通过angularjs在phonegap中显示联系人照片

时间:2014-03-27 09:07:42

标签: javascript android angularjs cordova contact-list

我可以从简单的html和javascript中获取并显示联系人照片,但是当我使用angularjs模型显示联系人照片时,我收到错误。以下是我的源代码:

列出我试图显示联系人的位置:

<ul class="list">

   <li class="item item-thumbnail-left" ng-repeat="contact in contactList">
            <img ng-src="{{contact.mphoto}}"/> <!--When I put this path directly ( ie "content://com.android.contacts/contacts/30/photo"), I am able to display the image, but when I fetch it from the controller, I am getting error: "unable to read contacts from asset folder" -->
           <h2>{{contact.name}}</h2>
           <p >{{contact.number}}</p>

   </li>
</ul>

这是我设置ContactList的控制器:

ContactService.find("").then(function(contacts) {
        for (var i = 0; i < contacts.length; i++)
        {
            if (contacts[i].phoneNumbers !== null)
            {
                for (var j = 0; j < contacts[i].phoneNumbers.length; j++)
                {
 var img = contacts[i].photos  != null ? contacts[i].photos[0].value : "img/default.png";

                    $scope.contactList.push({name: contacts[i].name.formatted, number: contacts[i].phoneNumbers[j].value, mphoto: img})
                }
            }
        }

2 个答案:

答案 0 :(得分:10)

经过这么多的努力,我将能够找到问题,

请将以下行粘贴到App.js文件中,问题将得到解决,不显示照片的原因是Angularjs添加不安全:在每个网址之前,如果它不受信任。

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

答案 1 :(得分:0)

我在Angular 2中遇到过Ionic 2这个问题,但我不知道这是问题,我不知道如何尝试角度2的接受者答案。为了完整起见,这里是你的方式会使用Ionic 2修复它:

在控制器/服务中注入sanitizer: DomSanitizer

然后致电:sanitizer.bypassSecurityTrustUrl(photoURL)

以下是一个例子:

export class HomePage {
  url;

  constructor(public navCtrl: NavController, platform: Platform, sanitizer: DomSanitizer) {
    platform.ready().then(() => {
      Contacts
        .pickContact()
        .then((contact) => {
          alert(JSON.stringify(contact));
          if (contact.photos) {
            var photoURL = contact.photos[0].value;
            this.url = sanitizer.bypassSecurityTrustUrl(photoURL);
          }
        });

    })
  }

}