收藏
回答

图片点击放大即wx.previewimage时会触发onhide,预览返回时会触

图片点击放大即wx.previewimage时会触发onhide,预览返回时会触发onshow

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

2 个回答

  • 微盟
    微盟
    2018-11-28

    1 首先在data中定义一个变量比如 preImgStatus: false

    2. 在上述代码调用previewImage前加一个开关变量    this.setData({preImgStatus: true})

    3. 在显示放大图片时触发的onhide函数中加上

    if(this.data.preImgStatus == true) {
        this.setData({ preImgStatus: false});
        return;
    }
    //此处加上onhide真正需要处理的事件即可,onshow同理


    2018-11-28
    有用 1
    回复
  • 卢霄霄
    卢霄霄
    2018-11-27

    没毛病。。跳出小程序,进入了微信环境呀~

    分享的时候,wx.openLocation的时候,wx.chooseImage的时候,不都这样吗

    2018-11-27
    有用
    回复
登录 后发表内容