微信小程序引入方式

Posted Flamel

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序引入方式相关的知识,希望对你有一定的参考价值。

WXML提供两种文件引用方式

1、使用<include src="" />

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

如:

在header.wxml中

<text>
这里是头部
</text>

在first.wxml中引入header.wxml的内容

<include src="../ttttt/header"/>
<!-- 使用include时别忘了在最后加  / -->

 

 

2、使用<import src="" />

import可以在该文件中使用目标文件定义的template

如,在forter.wxml中

<template name="forter1">
这是底部1   {{text}}
</template>

<template name="forter2">
这是底部2    {{text}}
</template>

<!-- 上面是两个模板 -->

在first.wxml中引入forter.wxml的模板

<import src="../ttttt/forter"/>
<!-- 使用import时别忘了在最后加  / -->
<!-- 下面是为了确定用哪个模板 -->
<template is="forter2" data="{{text:\'设置的内容\'}}" />

 

注意:

import有作用域的概念,即只会import目标文件中定义的template,而不会import目标文件import的template。

如:C import B,B import A,在C中可以使用B定义的template,在B中可以使用A定义的template,但是C不能使用A定义的template

以上是关于微信小程序引入方式的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序代码片段分享

微信小程序json数据如何处理?

微信小程序使用weui扩展组件踩坑

微信小程序引入物流查询插件后新页面空白

微信小程序视图层WXML_模板

#yyds干货盘点#愚公系列2022年11月 微信小程序-引用