1. 程式人生 > 其它 >Go語言基礎之類型別名和自定義型別

Go語言基礎之類型別名和自定義型別

//此時物件的值更改了,但是檢視沒有更新

this.tableData.forEach((item) => {
//回顯資料
  if (!item.hisLocationCode) {
    item.hisLocationCode =
    item.hisLocationName && item.hisLocationName != "-" ? item.hisLocationName : " ";
  }
});

//$set可以觸發更新檢視

this.tableData.forEach((item) => { //回顯資料 if (!item.hisLocationCode) { this.$set( item, "hisLocationCode", item.hisLocationName && item.hisLocationName != "-" ? item.hisLocationName : "" ); } });