我知道如果文件不链接到本地资源会很好,但是使用 phonegap/steroids 框架,FILE_URI 返回“file:///Users/”路径,我可以使用它上传到 S3 或其他,但 Angular 赢了不要在模板中显示它。
有没有可能的解决方案?我尝试将配置添加到我的应用程序
.config(function ($compileProvider){
$compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|file|tel):/);
$compileProvider.imgSrcSanitizationWhitelist(/^\s*(https?|ftp|mailto|file|tel):/);
})
但似乎对错误没有影响。我可以对我的图像进行 base64 编码(然后工作),但如果可能的话,我想避免这种情况。
谢谢