小程序中的评论不可以提交,数据有显示但是数据库缺没有,代码如下: 【云数据库名字:mini_comments】
formSubmit: function (e) {
try {
let that = this;
let commentPage = 1
let content = that.data.commentContent;
console.info(content)
if (content == undefined || content.length == 0) {
wx.showToast({
title: '请输入内容',
icon: 'none',
duration: 1500
})
return
}
wx.requestSubscribeMessage({
tmplIds: [config.subcributeTemplateId],
success(res) {
wx.showLoading({
title: '加载中...',
})
console.info(res)
console.info(res[config.subcributeTemplateId])
that.submitContent(content, commentPage, res[config.subcributeTemplateId]).then((res) => {
console.info(res)
wx.hideLoading()
})
},
fail(res) {
console.info(res)
wx.showToast({
title: '程序有一点点小异常,操作失败啦',
icon: 'none',
duration: 1500
})
}
})
}
catch (err) {
wx.showToast({
title: '程序有一点点小异常,操作失败啦',
icon: 'none',
duration: 1500
})
console.info(err)
wx.hideLoading()
}
},
你这个submitContent函数放出来看一下嘛