我一直有骨幹的問題,並問了幾個人的幫助,但沒有運氣到目前爲止。骨幹這是undefined
我創建一個新的集合這樣
let eventsCollection = new BandEvents({artist: 'Muse'});
在收集,我做這
const BandEvents = Collection.extend({
model: Artist,
url: 'http://api.bandsintown.com/artists/' + this.artist + '/events.json?api_version=2.0&app_id=SomeID',
});
當我運行這段代碼,我得到以下錯誤在瀏覽器控制檯
Uncaught TypeError: Cannot read property 'artist' of undefined
所以這在+ this.artist +
是未定義的。我不知道我在做什麼錯。