收藏
回答

bindtap绑定事件在模拟机上可以生效,真机上没反应?

  <text class="title">热门站点</text>

  <view class="box">
    <view bindtap="changeLocation" wx:for="{{locations}}" wx:key="{{locations.name}}" class="location-box">
      <text class="location-name">{{item.name}}</text>
    </view>
  </view>


  data: {
    current: "广州站",
    locations: [{ name: "成都站" }, { name: "武汉站" }, { name: "济南站" }, { name: "北京站" }, { name: "上海站" }],
  },
 
  changeLocation(e) {
    // console.log(e);
    this.setData({
      current: e._relatedInfo.anchorTargetText,
    });
    wx.switchTab({
      url: "/pages/home/home",
    });
  },


.title{
  margin-top: 30rpx;
  margin-left: 24rpx;
  font-size:32rpx;
  font-weight:600;
  color:rgba(51,51,51,1);
  line-height:45rpx;
  display: block
}
 
.box{
  margin-top: 20rpx;
  background-color: #fff;
  padding-top: 30rpx;
  padding-bottom: 30rpx;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center
}
 
.location-box{
  width:200rpx;
  height:80rpx;
  border-radius:2rpx;
  border:2rpx solid rgba(185, 185, 185, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30rpx;
  margin-bottom: 30rpx;
}
 
.location-name{
  font-size:28rpx;
  color:rgba(51, 51, 51, 1);
  line-height:40rpx;
}


在开发者工具中,模拟机点击跳转什么的都能实现,没问题。我把bindtap换到其它层级,结果也一样。其它页面也有用到bindtap来跳转,其他的页面明明没有问题呀?到底问题出在哪里呢?请大佬帮忙解答!

也排除了以下几种情况

  1. css中使用了position,或者设置了z-index

  2. js中页面路径出错

最后一次编辑于  2019-10-12
回答关注问题邀请回答
收藏

2 个回答

  • 拾忆
    拾忆
    2019-10-12


    你的这个 e ???

    2019-10-12
    有用 1
    回复 3
  • 王浩Hanks🇨🇳
    王浩Hanks🇨🇳
    2019-10-12

    额?


    2019-10-12
    有用
    回复
登录 后发表内容
问题标签