我有一些代碼你能告訴我什麼是功能(el)?
hideLoadMask : function(response,config){
//Once the response is processed for a particular request it will be removed from the processing array
this.loadMaskRequestQueue =
this.loadMaskRequestQueue.filter(function (el) {
return el.requestID !== response.requestID;
});
}
在這裏,在「厄爾尼諾」包含諸如 loadingText數據:「正在加載...請稍候。」 requestID:1
當我調用hideLoadMask()時,我傳遞response =「正在加載...請稍候。」
你能告訴我什麼是函數(el),我的響應參數的值如何變成el的字段,什麼是requestID。
plz澄清我的疑惑。
在此先感謝
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter – Bergi