赞
踩
以前叫做自定义方法,现在更名成了api了
截图和文字放下面,以后忘了可以来找
/**
* 使用 npm 包 node-fetch 发送http请求, 详细使用文档可以参考
* https://github.com/node-fetch/node-fetch
*/
const fetch = require('node-fetch');
module.exports = async function (params, context) {
const db = context.database
const _ = db.command
const result = await db.collection('lcap-data-2mbZPdaue-cs_p8sd9aa-preview')
.where({
age: _.and(_.gt(26), _.lt(36))
})
.get();
// 在这里返回这个方法的结果,需要与出参定义的结构映射
return result.data
};
其中,集合的名字,不是集合标识,而是云数据库名,在云数据库去寻找
附上截图
就是箭头的那个位置的名字,就是云数据库名
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。