WXML提供了兩種文件引用方式import和iincludespa
importxml
import能夠在該文件中使用目標文件定義的template,如:在item.wxml中定義了一個叫item的template:作用域
<!--item.wxml-->it
<template name="item">import
<text>{{text}}</text>引用
</template>im
import的做用域文件
import有做用域的概念,即只會import目標文件中定義的template,而不會import目標文件import的template。co
好比:C import B,B import A,在C中能夠使用B定義的template,在B中能夠使用A定義的template,可是C不能使用A定義的template。
include
include能夠將目標文件除了<template/>的整個代碼引入,至關於拷貝到include的位置。