位置:电子教程 > 微信小程序入门教程 (如果看不到内容请使用360浏览器) 推荐学习资源
小程序起步
小程序基础知识
小程序基础语法
当前阅读教程:微信小程序入门教程 > 引用
阅读(22555525)      收藏       赞(5685)      分享
上一篇: 事件 下一篇: 小程序基础语法

WXML 提供两种文件引用方式importinclude

1.import

import可以在该文件中使用目标文件定义的template,如:在 item.wxml 中定义了一个叫itemtemplate.wxml文件代码示例

小白教程网www.2d5.net

如下:

<!-- item.wxml -->

<template name="item">

  <text>{{text}}</text>

</template>

index.wxml 中引用了 item.wxml,就可以使用item模板,.wxml文件代码示例

小白教程网www.2d5.net

如下:

<import src="item.wxml"/>

<template is="item" data="{{text: 'forbar'}}"/>

import 作用域的概念,即只会 import 目标文件中定义的 template,而不会 import 目标文件 import template。如:C import BB import A,在C中可以使用B定义的template,在B中可以使用A定义的template,但是C不能使用A定义的template

.wxml文件代码示例

小白教程网www.2d5.net

如下:

<!-- A.wxml -->

<template name="A">

  <text> A template </text>

</template>

       .wxml文件代码示例

小白教程网www.2d5.net

如下:

<!-- B.wxml -->

<import src="a.wxml"/>

<template name="B">

  <text> B template </text>

</template>

.wxml文件代码示例

小白教程网www.2d5.net

如下:

<!-- C.wxml -->

<import src="b.wxml"/>

<template is="A"/>  <!-- Error! Can not use tempalte when not import A. -->

<template is="B"/>

2.include

include 可以将目标文件除了 <template/> <wxs/> 外的整个代码引入,相当于是拷贝到 include 位置,.wxml文件代码示例

小白教程网www.2d5.net

如下:

<!-- index.wxml -->

<include src="header.wxml"/>

<view> body </view>

<include src="footer.wxml"/>

       .wxml文件代码示例

小白教程网www.2d5.net

如下:

<!-- header.wxml -->

<view> header </view>

 

<!-- footer.wxml -->

<view> footer </view>


上一篇: 事件 下一篇: 小程序基础语法
计算机毕业设计作品网      毕业设计文档网      小程序教程网       毕业设计资料网  |         毕业设计定制QQ:45157718(微信同号)(备注:毕设)