旧版本代码如下:
var vm=new Vue({
el:'.book',
data:{
books:[]
},
ready() {
this.resource=this.$resource("/books{/id}");
this.resource.get().then((data)=> {
this.books=data.json();
})
}
})
新版本代码如下:
var vm=new Vue({
el:'.book',
data:{
books:[]
},
mounted:function () {
this.resource=this.$resource("/books{/id}");
this.resource.get().then((data)=> {
this.books=data.body;
//this.books=[{"name":"vue","price":30},{"name":"js","price":10},{"name":"jquery","price":30}];
})
}
})