tcb-router
基于koa风格的小程序·云开发云函数轻量级类路由库,主要用于优化服务端函数处理逻辑
安装
在云函数当前目录下安装:npm install --save tcb-router
使用
event对象
event
指的是触发云函数的事件,当小程序端调用云函数时,event
就是小程序端调用云函数时传入的参数,外加后端自动注入的小程序用户的 openid 和小程序的 appid。
总结:event对象中包含了请求的所有参数 + userInfo( appId(小程序)+ openId(用户的) )
测试:
客户端代码:
//获取博客列表
event, { '$url': 'list',
count: 10,
keyword: '',
start: 0,
userInfo:
{ appId: '。。。',
openId: '。。。' } }
//对比发现,event对象中包含了请求的所有参数 + userInfo( appId(小程序)+openId(用户的) )
context对象
context
对象包含了此处调用的调用信息和运行状态,可以用它来了解服务运行的情况。
context, { callbackWaitsForEmptyEventLoop: [Getter/Setter],
done: [Function: done],
succeed: [Function: succeed],
fail: [Function: fail],
getRemainingTimeInMillis: [Function: getRemainingTimeInMillis],
memory_limit_in_mb: 256,//字节限制
time_limit_in_ms: 3000,//时间限制
request_id: 'eaf169f6-16ef-11ea-9cfd-5254002fa145',//请求id
environ: xxx(内容有点长),//环境
function_version: '$LATEST',//云函数版本
function_name: 'blog',//云函数名称
namespace: 'env1-bxl-1' }//域名空间(环境id)