admin管理员组文章数量:1391737
JSfiddle here: /
From this answer, I understand Angular 1.2 ships with Strict Contextual Escaping (SCE) enabled. This affects the parser of expressions using ng-src
with an HTML5 video. I understand that if I wrap $sce.trustAsResourceUrl(videoURL)
around each of my video sources, then Angular will play them as normal. However, I am getting a list of video sources back from an API. It is expensive for me to loop over item in the array, assign each source as a $sce.trustAsResourceUrl
, and then loop over that new array in my view.
What is the most efficient way of assigning all my video sources as trusted without having to loop over all of them? Can I assign all video sources to be $sce
trusted beforehand?
JSfiddle here: http://jsfiddle/TegFf/73/
From this answer, I understand Angular 1.2 ships with Strict Contextual Escaping (SCE) enabled. This affects the parser of expressions using ng-src
with an HTML5 video. I understand that if I wrap $sce.trustAsResourceUrl(videoURL)
around each of my video sources, then Angular will play them as normal. However, I am getting a list of video sources back from an API. It is expensive for me to loop over item in the array, assign each source as a $sce.trustAsResourceUrl
, and then loop over that new array in my view.
What is the most efficient way of assigning all my video sources as trusted without having to loop over all of them? Can I assign all video sources to be $sce
trusted beforehand?
1 Answer
Reset to default 8It looks like what you want is to whitelist the domain these videos will be served from. You can do this using $sceDelegateProvider
All you need to do is add a bit of config as follows:
app.config(function($sceDelegateProvider) {
$sceDelegateProvider.resourceUrlWhitelist([
// Allow same origin resource loads.
'self',
// Allow loading from our assets domain. Notice the difference between * and **.
'http://media.w3/**']);
});
I've updated your fiddle with a working demo: http://jsfiddle/spikeheap/ACJ77/1/
本文标签: javascriptAngular JS Handling NgRepeated HTML5 Video amp SCEStack Overflow
版权声明:本文标题:javascript - Angular JS Handling Ng-Repeated HTML5 Video & $SCE - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744767454a2624127.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论