小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如图,
就是希望点击到哪个点,就能够动态的改变下标,
这样就能显示对应的点,
如何改,求帮助
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
建立对应关系就好了。或者用 data-* 传递markerId
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<view catchtap="clickme" data-index="{{渲染视图用的数组下标}}">
clickme: function(e) {
var index = e.currentTarget.dataset.index;
this.setData({
showText: this.data.markers[index].markerId;
})
}
clickme:function(e){
showText: this.data.markers[index].markerId,
this.showModal();
},
<text>2022年7月29日~8月2日 | 成都 </text>
<map latitude="{{lat}}" longitude="{{lon}}" markers='{{markers}}' bindmarkertap="clickme" enable-3D="true"></map>
<view animation="{{animationData}}" class="commodity_attr_box" wx:if="{{showModalStatus}}" >
<view class="tips">请左右滑动下面切换美食点↓↓↓</view>
这是第{{data-markerId}}个点
</view>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
建立对应关系就好了。或者用 data-* 传递markerId
<view catchtap="clickme" data-index="{{渲染视图用的数组下标}}">
clickme: function(e) {
var index = e.currentTarget.dataset.index;
this.setData({
showText: this.data.markers[index].markerId;
})
}
<map latitude="{{lat}}" longitude="{{lon}}" markers='{{markers}}' bindmarkertap="clickme" enable-3D="true" id="{{item.markerId}}"></map>
clickme:function(e){
var index = e.currentTarget.dataset.index;
this.setData({
showText: this.data.markers[index].markerId,
})
this.showModal();
},
<text>2022年7月29日~8月2日 | 成都 </text>
<map latitude="{{lat}}" longitude="{{lon}}" markers='{{markers}}' bindmarkertap="clickme" enable-3D="true"></map>
<view animation="{{animationData}}" class="commodity_attr_box" wx:if="{{showModalStatus}}" >
<view class="tips">请左右滑动下面切换美食点↓↓↓</view>
这是第{{data-markerId}}个点
</view>
</view>