Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

모든 HTML5 비디오 소스를 반복할 필요 없이 신뢰할 수 있는 것으로 할당하는 가장 효율적인 방법은 무엇입니까?

<시간/>

HTML5에서 비디오에 신뢰를 할당하는 몇 가지 구성 추가:

app.config(function($sceDelegateProvider) {
   $sceDelegateProvider.resourceUrlWhitelist([

   // allowing same origin resource loads
   'self',

   // allowing loading from our assets domain
   'https://media.w3.org/**']);
});