在vue中使用preloadjs加载文件,fileload事件无效,从而导致complete事件也无效了
需要加载一些图片和音频资源,伪代码如下:
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的问题,求解。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第三个参数this改成window试试