当前位置 : 主页 > 编程语言 > 小程序开发 >

小程序中import和include有什么区别

来源:互联网 收集:自由互联 发布时间:2021-08-15
本篇文章给大家介绍一下微信小程序中import和include差别。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。 相关学习推荐:小程序开发教程 import 有作用域的概念
本篇文章给大家介绍一下微信小程序中import和include差别。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

相关学习推荐:小程序开发教程

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

<!-- A.wxml -->
<template name="A">
  <text> A template </text>
</template>
<!-- B.wxml -->
<import src="a.wxml"/>
<template name="B">
  <text> B template </text>
</template>
<!-- C.wxml -->
<import src="b.wxml"/>
<template is="A"/>  <!-- 错误不能多级引用A -->
<template is="B"/>

include 可以将目标文件除了 外的整个代码引入,相当于是拷贝到 include

<!-- index.wxml -->
<include src="header.wxml"/>
<view> body </view>
<include src="footer.wxml"/>
<!-- header.wxml -->
<view> header </view>
<!-- footer.wxml -->
<view> footer </view>

更多编程相关知识,请访问:编程入门!!

以上就是小程序中import和include有什么区别的详细内容,更多请关注自由互联其它相关文章!

网友评论