小程序template和component的区别

时间:2019-09-30 18:09:48   收藏:0   阅读:126

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>
 
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!