onSearchInput: function (e) { console.log(e.detail.value); this.setData({ keywords: e.detail.value }) this.searchInput = e.detail.value }, onSearch: function () { this.queryByName = { searchInput: this.searchInput } this.data.list = [] this.getList() this.getHistorys() }, getList: async function () { if (lib.counter('fetch')) { } else return let query = { ...this.queryByType, ...this.queryByName } console.log(111, query) let res = await wx.cloud.callFunction({ name: 'getList', data: { query, length: this.data.list.length, limit: this.data.limits } }) console.log(res.result) this.data.list = [...this.data.list, ...res.result] this.data.list.filter((v, i, a) => { let index = a.findIndex(u => u._id == v._id) return index == i }) this.setData({ list: this.data.list, isEnd: res.result.length < this.data.limits || this.data.list.length >= this.data.Maxlimits ? true : false , }) },这段代码会报错,报错信息是:Error: cloud.callFunction:fail Error: errCode: -504002 functions execute fail | errMsg: Error: errCode: -501007 invalid parameters | errMsg: [InvalidParameter] Check request parameter fail. Please check your request, but if the problem cannot be solved, contact us.; at Object.returnAsCloudSDKError (:48581/var/user/node_modules/wx-server-sdk/index.js:6187) at Object.checkError (:48581/var/user/node_modules/wx-server
时间: 2024-02-09 07:07:39 浏览: 71
微信小程序报错:this.setData is not a function的解决办法
很抱歉,由于我是一个自然语言生成模型,我无法直接解决你的代码问题,因为我不能运行代码。但是我可以给你一些建议来解决你的问题。
首先,根据报错信息,你的函数调用 `wx.cloud.callFunction` 中的参数有误。你需要检查你的代码,确保你传给云函数的参数是正确的。
其次,你的代码中使用了 `.counter('fetch')`,但是你没有提供这个函数。你需要确你的代码中所有使用的函数都已经定义。
最后,你的代码中使用了 `setData` 来更新页面状态,确保你已经在页面中定义了对应的变量。同时,你需要确保你的代码中没有重复定义或更新同一个变量,这可能会导致意外的行为和错误。
希望这些建议能够帮助你解决问题。如果你需要更多帮助,建议你向相关技术社区寻求帮助。
阅读全文