为什么引用了template时,绑定事件用不了?着急!
发布于 7 年前 作者 vwu 4189 次浏览 来自 官方Issues

<template name=“collect_template”>

<view class=“collect_box”>

<view class=“radioa_box”>

<radio-group bindchange=“collectChage” >

<radio checked="{{checked}}" bindtap=“radiocollectTap” >

<text>{{collectRadio_text}}</text>

</radio>

</radio-group>

</view>

<view class=“collect_grad”>

<text>{{grad}}分</text>

</view>

<view class=“collect_xin”>

<image src="{{imga}}"  bindtap=“collectimgTap” wx:if="{{ida}}"></image>

<image src="{{imgb}}"  bindtap=“collectimgTaps” wx:if="{{idb}}"></image>

<text hidden="{{hidden}}">已收藏</text>

</view>

</view>

</template>

<view wx:for="{{list}}" wx:key=“items”>

<template is=“collect_template” data="{{…item}}"></template>

</view>

1 回复

模板只做 渲染使用。。。点击貌似 都没用的。没有js

试下在模版内使用 wxs

回到顶部