123456789 |
- const { CloudQuery, CloudObject } = require("../lib/ncloud");
- testQuery()
- async function testQuery(){
- let query = new CloudQuery("HnbPost")
- // query.equalTo("gender","女")
- query.equalTo("title","如何选择优质脐橙种苗")
- let list = await query.find();
- console.log(list)
- }
|