小程序template和component的区别

Posted ouyangxiaoyao

tags:

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

1.小程序中模板template是不能写事件的,既没有js文件

组件component是可以自定义事件,并且组件有自己的生命周期
2,引入到页面的方式不同
template直接在.wxml页面中引入<import src=‘components/menu/menu.wxml‘ />
需要用的地方这样写
<template is="menu" data="icons, iconsSwitch, iconBg">
</template>
 
component是在页面对应的.json文件中引入
"usingComponents":
"banner": "../../../components/banner/banner"
需要用的时候在页面中写
<banner layoutID="commpent.LayoutID" typeID="commpent.TypeID"></banner>
 

以上是关于小程序template和component的区别的主要内容,如果未能解决你的问题,请参考以下文章

回顾 微信小程序template模板的使用 循环 赋值 点击事件

回顾 微信小程序template模板的使用 循环 赋值 点击事件

Delphi之创建组件模板(Component Template)

小程序中父子组件间的通信与事件

c++template中typename 和class有啥区别?

5.6 Components -- Handling User Interaction with Actions