mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
17 lines
312 B
JavaScript
17 lines
312 B
JavaScript
// 这是一个测试用的云函数
|
|
const cloud = require('wx-server-sdk');
|
|
|
|
cloud.init();
|
|
|
|
// 云函数入口函数
|
|
exports.main = async event => {
|
|
const wxContext = cloud.getWXContext();
|
|
|
|
return {
|
|
event,
|
|
openid: wxContext.OPENID,
|
|
appid: wxContext.APPID,
|
|
unionid: wxContext.UNIONID
|
|
};
|
|
};
|