test.js 299 B

123456789
  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. let list = await query.find();
  8. console.log(list)
  9. }