Observer(__ob__: Observer) 物件新增屬性
阿新 • • 發佈:2019-01-14
重點通過這句話給物件新增屬性:
this.$set(r,'upshow',false);
在data中定義laws來裝從介面中請求到資料
data(){ return{ laws:[],//法律依據 } },
_getAttachment(){ getAttachment( {attachment_id: this.attachment_id}, {Authorization:this.access_token} ).then( (res)=>{this.laws = res.content.laws; //得到的資料賦值給lawsthis.laws.forEach((r)=>{ //迴圈遍歷laws物件 分別一一賦值新物件 this.$set(r,'upshow',false); //重點是這句話。(物件,屬性,屬性值) }) }) },
此時law返回是的
展開:
成果: