// 云函数入口文件
const cloud = require('wx-server-sdk')
// 默认配置
cloud.init();
const db = cloud.database()
function setDelete() {
return remove(db.collection('TexstLong').limit(100).get());
}
function remove(objs){
for (var i = 0; i < objs.length;i++){
objs[i].remove();
}
return objs.length;
}
// 云函数入口函数
exports.main = async (event, context) => {
try {
return setDelete();
}catch (e) {
throw e;
}
}
请求高手求解
微信小程序开发问题解答
微信小程序开发者回答:
大家跳转微信小程序的时候有没有遇到过这个问题啊?navigateToMiniProgramAppIdList
本文网址:http://www.91bianli.com/weixinxiaochengxu/42621.html