我想在TP5.1 中 使用 <include> 模板标签时候 对于 file 参数进行动态传参 例如
<volist name=arr id=vo>
<include file="$key.template" />
</volist>
请不要直接复制网络上的答案了
基本都试过
根据
thinkphp\library\think 下的 $this->parseInclude 中进行打印 任何参数进来之后都是未解析的
例如上面的 $key.template 进来之后依旧还是 $key. template 通过 $this->getdata() 获取到的数据 只有在 控制器中 通过 $this->assign() 输出的有 但是在 view 遍历循环出的 $vo 是没有的!
<volist name=arr id=vo>
<include file="$key.template" />
</volist>
请不要直接复制网络上的答案了
基本都试过
根据
thinkphp\library\think 下的 $this->parseInclude 中进行打印 任何参数进来之后都是未解析的
例如上面的 $key.template 进来之后依旧还是 $key. template 通过 $this->getdata() 获取到的数据 只有在 控制器中 通过 $this->assign() 输出的有 但是在 view 遍历循环出的 $vo 是没有的!