首页
云开发
关于
个人开发测试
愿你我背道而驰却没有走远
累计撰写
8
篇文章
累计创建
6
个标签
累计收到
0
条评论
栏目
首页
云开发
关于
目 录
CONTENT
以下是
云函数
相关的文章
2023-12-13
云函数-某平台验证码自主维护定时任务,用于其它接口调用
//获取历史cookie let Cookie = await ctx.model("Cookie").query(qb => { qb.where("userid", 10000); qb.orderBy("id", "desc"); }).fetch(); //请求头设置 let heade
2023-12-13
93
0
0
腾龙云开发
云开发
2023-07-07
云函数-更新企业微信用户列表
const qywxconfig = await ctx.model("qy_wechat_config").query(qb => { qb.where("id", 3) }).fetch(); var api = new module.QyWechatApi(qywxconfig.corpid
2023-07-07
69
0
0
云开发
腾龙云开发
2023-06-08
云函数-发送邮件
let params = ctx.post; try { const result = await module.sendMail({ from: 'message@xxxxxxxx.com', // 发送者 to: 'xxxxxxx@xxxxxxxxxxx.com', // 接受者,
2023-06-08
78
0
0
腾龙云开发
云开发
2023-01-12
云函数-对接某api
function getTimestamp() { return Date.parse(new Date()) / 1000; }; if(!ctx.post.code){ throw new Error("参数code不存在"); } const config = { appid: "f
2023-01-12
90
0
0
腾龙云开发
云开发