12345678910 |
- const { CloudQuery, CloudObject } = require("../lib/ncloud");
- testQuery()
- async function testQuery(){
- let query = new CloudQuery("HnbPost")
- // query.equalTo("gender","女")
- query.equalTo("title","农村电商助力农产品销售新渠道")
- query.equalTo("author","1")
- let list = await query.find();
- console.log(list)
- }
|