let temp = that.data.tempPaging console.log(temp) Product.setQuery(query).orderBy('-created_at').limit(5).offset(0).find().then(res => {
截取了部分代码如上,这是正常的情况。
let temp = that.data.tempPaging console.log(temp) Product.setQuery(query).orderBy('-created_at').limit(5).offset(temp).find().then(res => {
如果我将 offset 括号中换成temp,就没办法识别这个temp背后所赋值的数字了。
那怎么办? 这个temp的值必须是动态的。
慕设计2395807
聪明的汤姆