map事件参数传递问题
- 需求的场景描述(希望解决的问题)
我给map设置了market和bindcallouttap(点击标记气泡事件),如何把market(当前数组项)的参数传递到逻辑层呢
代码大概是这样的:
<map class=“map” bindcallouttap=“enter_item” markers=’{{product}}’ id=’{{product.index}}’ longitude=’{{longitude}}’
enter_item: function (e) {
console.log(e)
},看了一下e的内容,dataset里面没有任何数据
- 希望提供的能力