1
Vue 2.2.6バージョンが使用されています。
私は非常に単純なVueインスタンスを構築しており、従業員名のリストを返すようにしたいと思います。しかし、問題は、取得後には/employees.json
employees
データが更新されていないことです。私はconsole.logでデバッグしようとしましたが、loadData()
関数の従業員データが正しく設定されていることを示しています。しかし、この機能が実行された後、従業員の値は再び空になります。Vueインスタンスのデータが更新されない理由
var employees = new Vue({
el: 'employees',
template: "<ul id='employees'><li v-for='employee in employees'>{{ employee['name'] }}</li></ul>",
data: {
employees: []
},
methods: {
loadData: function() {
this.$http.get('/employees.json').then(response => {
this.employees = response.body;
//1. console.log returns here ">employees: [object Object]"
});
}
},
mounted: function(){
this.loadData();
//2. console.log returns here empty employees value
}
})
どこが間違っていますか?変数を/employees.json
からemployees
に正しく割り当てるにはどうすればいいですか?
ありがとう!テンプレートをコンポーネントに移動して、正しく動作するようになりました。 – iskvmk