收藏
回答

IOS的微信版本8.0.52,使用wx.showActionSheet会直接跳转到fail?

在开发工具中组件正常运行,用真机调试组件直接执行fail没有弹出选项

      wx.showActionSheet({
      itemList: ['男性', '女(已婚)', '女(未婚)'],
      success (res) {
        console.log(res.tapIndex)      
        if(res.tapIndex==1){
          wx.showModal({
            title:"免责声明",
            content:",不适用于未婚女性,请您谨慎选择。",
            success(rest){  
              if(rest.confirm){
                that.setData({
                  click_sex:2
                })
              }         
              if(rest.cancel){
                that.onLoad();
              }
            }
          })
        }
        if(res.tapIndex==2){
          that.setData({
            click_sex:3
          })
        }
        if(res.tapIndex==0){
          that.setData({
            click_sex:1
          })
        }
        
      }, fail(res){
        console.log(res.errMsg)
      }   

     


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

2 个回答

登录 后发表内容