<view data-switcher= "{{item}}" class= "{{item.state === 'on' ? 'switcher is-on' : 'switcher is-off'}}" wx: for = "{{deviceList}}" > <text class= "{{item.type}}" ></text> <text>{{item.name}}</text> </view> |
当我点击view的时候,父类方法能够通过冒泡获取到e.target.dataset.switcher,但是点击到两个text的时候,就获取不到了。
所以我是需要在text上面repeat data-switcher="{{item}}" again and again吗
e.currentTarget.dataset.switcher
'
就是这样的代码,当我点击到text的时候,两个都是undefined