需要載入一些圖片和音訊資源,偽代碼如下:
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的問題,求解。
第三個參數this改成window試試