收藏
回答

这个模板为什么不能用,哪里错了吗,没有在页面显示对应的信息?


<template name="tpl">

    <view wx:for="{{fn.split(str)}}">

        {{item}}

    </view>

    <wxs module="fn">

      module.exports = {

          split: function(str){

            return str.split(',');

          }

      }

    </wxs>

</template>


<template is="tpldata="{{'1,2,4'}}"></template>


回答关注问题邀请回答
收藏
登录 后发表内容