小程序能不能动态加载模板文件template.wxml?
- 需求的场景描述(希望解决的问题)
小程序同一个页面通过点击按钮切换,显示不同样式的列表
列表做成模板
引用模板 import 不能使用变量,
<import src="{{tplWhere.tplPath}}" />
<template is="{{tplWhere.tplName}}" data="{{tplWhere.tplData}}"/>
报错:
./pages/template/where/where_1.wxml
Bad attr `data` with message
1 | <import src="{{tplWhere.tplPath}}" />
> 2 | <template is="{{tplWhere.tplName}}" data="{{tplWhere.tplData}}"/>
| ^
3 | <!-- <view>{{tplWhere.tplPath}}</view> -->
4 | <view style=‘width:100%;’>
- 希望提供的能力