test.js 343 B

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