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.
22 lines
487 B
22 lines
487 B
// 云函数入口文件
|
|
const cloud = require('wx-server-sdk')
|
|
|
|
cloud.init()
|
|
const db = cloud.database();
|
|
const _ = db.command;
|
|
// 云函数入口函数
|
|
exports.main = async (event, context) => {
|
|
return await db.collection('love_upload').add({
|
|
data:{
|
|
title:event.title,
|
|
content:event.content,
|
|
messageNum:0,
|
|
zan:0,
|
|
openid:event.openid,
|
|
time:Date.now(),//日期
|
|
url: event.url,
|
|
type:parseInt(event.type),
|
|
view:true
|
|
}
|
|
})
|
|
} |