小程序 template 里面bingtap 获取不到参数
在模版 里面绑定事件
bindtap="footerRedirect" data-pagepath="{{item.pagePath}}"
在page.js 里面
footerRedirect: function (e) {
var type = e.target.dataset.type;
console.log(88888888888);
console.log( e.target.dataset);
获取不到参数,
框架类型 | 问题类型 | API/组件名称 | 终端类型 | 操作系统 | 微信版本 | 基础库版本 |
---|---|---|---|---|---|---|
小程序 | Bug | template bindtap | 客户端 | iOS | 6.6.7 | 1.9.98 |
4 个回答
请尝试e.currentTarget.dataset.type
详情参照文档:https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxml/event.html
试试e.currentTarget.dataset.type
打印出来的结果
log的8888出来了吗