赞
踩
const db = uniCloud.database();
exports.main = async (event, context) => {
let {num} = await JSON.parse(event.body);//需要预解析body对象
const res = await db.collection("article").limit(num).get();
return res
};
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。