Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
请问如何把VALUE这个实时值传入 let VALUE=this.data.value .like('DB', %VALUE%)
Search: async function () { let VALUE=this.data.value const { data } = await supabase .from('DB') .select('*') .like('DB', %VALUE%) this.setData({ classify: data.data, }) },
推荐采用模板字符串的方式传参:%${value}%
%${value}%