[Problem] Saving imageUri inside Array then displaying Images using 'ng-repeat'

Try adding below lines in your app.js

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