You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
261 B
9 lines
261 B
5 years ago
|
const cloud = require('wx-server-sdk')
|
||
|
|
||
|
exports.main = async (event, context) => {
|
||
|
// event.userInfo 是已废弃的保留字段,在此不做展示
|
||
|
// 获取 OPENID 等微信上下文请使用 cloud.getWXContext()
|
||
|
delete event.userInfo
|
||
|
return event
|
||
|
}
|