收藏
回答

wx.showActionSheet()蒙层问题?

wx.showActionSheet()点击蒙层为什么也会跳转页面?

wx.showActionSheet({

      itemList: [that.data.markName],

      success: function (res) {

        console.log(res.tapIndex)

        wx.navigateTo({

          url: '../shop/detail?id=' + that.data.markId

        })

      },

      fail: function (res) {

        console.log(res.errMsg)

      }

    })


回答关注问题邀请回答
收藏

2 个回答

  • 蜗牛
    蜗牛
    2017-12-19

    现在貌似还有这个问题。我先加上你这个判断,感谢

    2017-12-19
    有用
    回复
  • stephen
    stephen
    2017-09-04

    sucess下面加一句吧

    if (res.tapIndex == undefined) return


    以前我也遇到过,后来都这么处理了

    2017-09-04
    有用
    回复
登录 后发表内容