代码没有做任何修改,之前好好的,怎么就突然不行了呢?
今天在做第二个发布页面时,想把两个数据库集合放在一个云函数中实现,没有成功,尝试一下第一个发布页面,没有反应,我就删除了一些刚写的代码,还是不行,一直到我把所有新写的代码都删除了,还原了之前的代码,居然还是没有反应,和之前一模一样的代码,怎么就不行了呢?
/** * 发布事件 */ onSubmitEvent:function(event){ console.log(event); const content = event.detail.value.content; const location=this.data.location; const author=app.globalData.userInfo; wx.showLoading({ title:"正在发表中..." }) // 特3456书yuuo莞6543李zxcz蒜7782法fgnv级 wx.cloud.callFunction({ name:"recruit", data:{ content:content, author:author, location:location, varchar:event.detail.value.varchar, firstName:event.detail.value.firstName, work:event.detail.value.work, education:event.detail.value.education, position:"" }, success:res => { console.log(res); const _id = res.result._id; if(_id){ wx.hideLoading(); wx.showToast({ title:"恭喜!发送成功!" }); setTimeout(function(){ wx.navigateBack({}) },800) }else{ wx.showToast({ title:res.result.errMsg, }) } } }) },云函数代码:if(errcode == 0){ return await db.collection("recruit").add({ data:{ content:content, author:author, location:location, varchar:varchar, firstName:firstName, position:position, work:work, education:education, create_time:db.serverDate(), } }) }else{ return await {"errcode":1,"errmsg":"您的内容有风险,请修改再发布!"} };