Vue 常用API整理

2021-10-12 10:16:46 字數 1424 閱讀 4979

關於api這東西,前端各個框架都是不同的,且都經常更新,不用死記,所以本篇部落格記錄一下vue中業務上常用的api(稍複雜些的api,簡單的略)

vue中的陣列操作

// faq: key值一般不取index(陣列下標值) 取唯一的id值

//(若乙個頁面有多個陣列,index會有多個,key值則失去了唯一性)

for=

"(item, index) in list"

:key=

"item.id"

>

}<

/li>

list:

['a'

,'b'

,'c'];

// 此為data中的陣列

list[0]

='aa'

;// 此種修改是無效的,ui介面不會重新渲染 這是應該注意的

// 正確的姿勢 通過呼叫 $set(array, index, value)

// 傳參:1. 要操作的陣列 2. 下標值 3. 修改的值

this

.$set

(this

.list,0,

'aa');

// 或 vue.$set(this.list, 0, 'aa');

list:[,

,,]// 上下移動

function

changesort

(type, index)

else

}// 隨機調換也是一樣的,傳index就可以了

// ...**略

this

.$delete

(this

.list, index)

;// index 下標值

vue中的物件操作

obj:

this

.$set

(this

.obj,

'name'

,'王八蛋');

// obj 中的 name 從 「朱小明」 變成了 「王八蛋」

this

.$delete

(this

.obj,

"age");

// obj中的age沒得了

vue中的 $nexttick

這玩意太長,下次單獨寫一篇,放個鏈結(先去恰個羊肉火鍋,告辭!)

常用API整理

using system.runtime.interopservices api32.7z 1.讀寫ini檔案 參考 c 讀寫ini檔案 dllimport kernel32 private static extern long writeprivateprofilestring string se...

常用API類整理

system類 類中的方法都是靜態的。out物件,標準輸出流 in物件,標準輸入流 常見方法 long currenttimemillis 獲取當前時間的毫秒值 properties getproperties 確定當前系統的屬性資訊 string getproperty string key 獲取...

vue專案常用API

檔案 utils util.js const formattime date const formatnumber n function checkmobile mobile test mobile 驗證手機號 function password pws test pws 驗證密碼 return r...