import引入:
不支持多層嵌套引入,只支持一次引用,以防止死循環(huán)的產(chǎn)生
<!-- a.wxml -->
<view>Hello World</view>
<template name="a">
Hello World!
</template>
<!-- helloworld.wxml -->
<import src="a.wxml"></import>
<template is="a"></template>
is 表示引入name為"a"的代碼塊
運(yùn)行結(jié)果:include引入
將目標(biāo)文件內(nèi)除了模板代碼塊(<template>)外的所有代碼引入
<!-- helloworld.wxml -->
<include src="a.wxml"/>
<template is="a"></template>
<!-- a.wxml -->
<template name="a">
<view>
This is a.wxml.
</view>
</template>
<view>Hello World</view>
運(yùn)行結(jié)果: