收藏
回答

<template>调用时可否为参数设置别名?

<template is="clue-recorddata="{{ followupList as clueList, applyList as list }}"></template>

模版的页面如下

<template name="clue-list-card">

  <view class="clue-list">

    <view wx:for="{{ clueList }}">

      <text class="title">{{ index + 1 }}.{{ item.name }}</text>

      <text class="time">{{ item.createTime }}</text>

    </view>

  </view>

<view wx:if="{{ list.length == 0 }}">添加</view>

</template>

不然如果我A页面的集合数据不是clueList 、list,而B页面是符合这个名称。这样A页面调用比较麻烦

回答关注问题邀请回答
收藏

2 个回答

  • brave
    brave
    2020-06-01
    <template is="clue-record" data="{{ clueList: followupList, list: applyList }}"></template>
    
    2020-06-01
    有用 2
    回复 1
    • 深藏功与名。
      深藏功与名。
      2020-06-01
      好的 谢谢大哥,我试下
      2020-06-01
      回复
  • 深藏功与名。
    深藏功与名。
    2020-06-01

    现在的处理办法就是在A页面也设置clueList 、list参数,但是个人觉得<template>组件如果能支持别名可以更加简洁

    2020-06-01
    有用
    回复
登录 后发表内容
问题标签