javascript - 在vue中使用preloadjs加载文件,fileload事件无效,从而导致complete事件也无效了
大家讲道理
大家讲道理 2017-06-12 09:27:52
0
1
1131

需要加载一些图片和音频资源,伪代码如下:

data () {
    assets: []  
},
methods :{
    getAssets () {
        var que = new createjs.LoadQueue(true);
        que.setMaxConnections(5);
        que.on('fileload', this.handleFileLoad, this);
        que.on('complete', this.createLoading, this);
    },
    handleFileLoad (event) {
        this.assets[event.item.id] = event; //这里根本进不来
    },
    createLoading (e) {
        // ...
    }
}

不知道是不是vuecomponent对象中传入的this的问题,求解。

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回复(1)
滿天的星座

第三个参数this改成window试试

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板