取得城市元件
city: {
template: '#city_template',
data: function () {
return {
cityData: cityData,//城市数据
selectedOptions:[24,81],//被选中的城市
list:[],
}
},
mounted: function () {
this.getCity()
},
methods: {
getCity: function () {
var self = this
$.ajax({
url:'test.json',
success:function (res) {
self.$set(self.$data, 'cityData', res)
}
})
}
}
},
一個頁面可能有多個這樣的元件,這樣的話就請求了多次的ajax,實際上數據都是一樣的,有沒有一種方法實現只請求一次異步數據,然後多個這樣的組件用同一份數據?嘗試了在外部定義ajax,然後賦值給cityData,這樣不能直接更新資料
某草草2017-05-19 10:18:17
最後使用了非同步組件的方式
Vue.component(ele,function (resolve, reject) {
getCity().then(function (data) {
resolve(comInherit.extend(obj[ele]));
}).catch(function (error) {
alert(error)
})
});