Unable to display contact photo in phonegap through angularjs

后端 未结 2 842
谎友^
谎友^ 2021-01-07 11:09

I am able to fetch and display the contact photo from simple html and javascript but when I use angularjs model to display the contact photo, I get an error. Following is my

2条回答
  •  迷失自我
    2021-01-07 11:58

    Finally after so much struggle I'll be able to find the issue,

    Please paste the below lines in your App.js file and problem will get solved and the reason for not showing photo is that Angularjs adds unsafe: before each url if it is not trusted.

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

提交回复
热议问题