云数据库怎么根据其中一个字段查询到fileID?
发布于 6 年前 作者 qiang76 531 次浏览 来自 官方Issues

我现在知道book,怎么查到fileID?

1 回复

db.collection(‘xxxx’).where({

    book: ‘书名’

}).get().then(res=>{

    console.log(res)

})

回到顶部