收藏
回答

云开发·数据有调用和显示,但是不可以提交到数据库?

小程序中的评论不可以提交,数据有显示但是数据库缺没有,代码如下: 【云数据库名字: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()

    }

  },

最后一次编辑于  2020-05-19
回答关注问题邀请回答
收藏

1 个回答

  • 121
    121
    2020-05-19

    你这个submitContent函数放出来看一下嘛

    2020-05-19
    有用
    回复 1
    • 子木青该学习了
      子木青该学习了
      2020-05-19
      解决了!是因为我的订阅消息没有弄!
      2020-05-19
      回复
登录 后发表内容
问题标签