请问如何在 data="{{categoryInfo:categoryInfo0,host:host}}
<template is="categorydetail" data="{{categoryInfo:categoryInfo0,host:host}}"/>
想这样调用{{'categoryInfo'+currentMenuIndex}}
<template is="categorydetail" data="{{categoryInfo:['categoryInfo'+currentMenuIndex],host:host}}"/>
currentMenuIndex 这个值是动态变动的
请问我这个传参应该如何拼接呢?
你的categoryInfo是个数组吗,为啥不这样:
<block wx:for="{{categoryInfo}}" wx:key="id"> <template is="categorydetail" data="{{categoryInfo:item,host:host}}"/> </block>
不是是object
categoryInfo0 是一个变量吗?