码迷,mamicode.com
首页 > 其他好文 > 详细

解决Not allowed to load local resource

时间:2019-01-09 15:03:03      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:catch   视频上传   object   解决   pre   div   resource   VID   绑定   

在做视频上传的时候,发现Not allowed to load local resource,也弄了很久,怕自己忘记了所以记下来

  bind: function() {
 SelectVideo.on("change", function () { me.BindVedio(this); });

}
//视频绑定
        BindVedio: function (thisFile) {
            var me = this;
            var files = thisFile.files;
            var video = $("video");
            for (var i = 0; i < files.length; i++) {
                    var node = files[i];
                    try {
                        imgURL = node.getAsDataURL();
                    } catch (e) {
                        video.attr("src",window.URL.createObjectURL(node));
                }
            }
        },

  

解决Not allowed to load local resource

标签:catch   视频上传   object   解决   pre   div   resource   VID   绑定   

原文地址:https://www.cnblogs.com/biao-123/p/10244111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!