o.functionName is not a function
let data = [];
…
this.findById = function(id) {
return data.find((d, index, arr) => {
return d.id == id;
});
};
data在api请求中更新。有时候会报thirdScriptError,o.find is not a function. ‘o.find’ is undefined.
报这个错误时,通常是在网络请求更新data数据时。
但是。。。即便是在更新数据,原有的data数据还是在的,怎么会报这个错误呢?
求大神指点!!