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.
19 lines
496 B
19 lines
496 B
// 云函数入口文件
|
|
const cloud = require('wx-server-sdk')
|
|
|
|
cloud.init()
|
|
|
|
// 云函数入口函数
|
|
exports.main = async (event, context) => {
|
|
const wxContext = cloud.getWXContext()
|
|
|
|
if(event._id!=null){
|
|
return await cloud.database().collection("Collection").where({
|
|
_openid:wxContext.OPENID,
|
|
noteid:event._id
|
|
}).get()
|
|
}
|
|
else return await cloud.database().collection("Collection").where({
|
|
_openid:wxContext.OPENID
|
|
}).get()
|
|
} |