收藏
回答

在调用云开发中集合的添加数据方法时,没有任何反应,publish1方法没有反应

框架类型 问题类型 终端类型 AppID 环境ID 基础库版本
小程序 Bug 微信安卓客户端 wxd2de2ad8dd77dbb2 lostfound-7gqcxyh2bb847e0e 2.31.0

这是js里的

 publish1(){
     console.log();
      const {
        type,
        multiArray,
        multiIndex,
        name,
        date,
        region,
        phone,
        desc,
        imgList,
      } =this.data;
      console.log();
         
      db.collection('publish').add({
          data:{
                    type,
                    classify1:multiArray[0][multiIndex[0]],
                    classify2:multiArray[1][multiIndex[1]],
                    name,
                    date,
                    region,
                    phone,
                    desc,
                    imgList
            },
              success:(res)=>{
                console.log(res);
                wx.switchTab({
                  url: '../index/index',
                  success:() => {
                    wx.showToast({
                      title: '发布成功',
                   })


                  }
                })
            }


              
            })
  },



这是wxml里的

<view class="body">
    <view class="top">
        <text>X</text>
        <button size="mini" bindtap="publish1"  class="publish-btn" >publish</button>
    </view>
回答关注问题邀请回答
收藏

1 个回答

  • showms
    showms
    2023-04-26

    把fail函数放出来看看报什么错?

    2023-04-26
    有用
    回复 1
    • 提督
      提督
      2023-04-26
      他甚至都不运行,我换个事件可以运行
      2023-04-26
      回复
登录 后发表内容