小程序云where查询问题
发布于 5 年前 作者 yandai 20236 次浏览 来自 问答

var t = this, e = t.data.id;

console.log(e)

const db = wx.cloud.database()

db.collection(‘aa’).where({ did:13})

这样可以查询结果

如果

db.collection(‘aa’).where({ did:e })

查不出,怎么解决

1 回复

t.data.id的值是string还是number呀~你这个地方如果13可以查到结果,那么e保存的是string值自然是要出错的呀

回到顶部