小程序template细节,我们在引用的template的要注意一下几点
1、引用的时候,注意:结束符 / (一定要加上 /,不然后报错的)
案例:
<import src="../stars/stars-template.wxml" />
2、此处填写template的name的值 (is后面就是你写template的name的值)
<template is="starsTemplate" />
3、第二点后面也要加上:结束符 / (不加会抱错,不信的话,你们可以试试)
完整的代码
<import src="../stars/stars-template.wxml" />
<template name="movieTemplate">
<image src="/images/02.png"></image>
<text>你的名字</text>
<template is="starsTemplate" />
</template>
希望以上能帮到你,解决问题。