引用 import和include
Posted caitangbutian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了引用 import和include相关的知识,希望对你有一定的参考价值。
官方文档:https://developers.weixin.qq.com/miniprogram/dev/reference/wxml/import.html
总结1、如果想引用一片自己定义的外部模板(template),则可以使用 import ,它会在 当前文件中 使用 目标文件 里定义的 template,
举例:
步骤1、先在单独的.wxml中,写好模板
<template name="newA"> <view> <text> 余额: {{remaining}}</text> <text> 时间: {{time}}</text> </view> </template>
步骤2、在需要的地方使用 import ,并 渲染模板和数据(如果没有渲染模板则不会显示)
<import src="a.wxml"/> <template wx:for="{{array}}" is="newA" data="{{...array[index]}}"/>
注意:import 的作用域
import 有作用域的概念,即只会 import 目标文件中定义的模板(template),而不会 import 目标文件 import 的模板(template)。
如:C import B,B import A,在C中可以使用B定义的template
,在B中可以使用A定义的template
,但是C不能使用A定义的template
。
以上是关于引用 import和include的主要内容,如果未能解决你的问题,请参考以下文章