企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[自定义组件](https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/behaviors.html) [TOC] # behavior > 用于组件间代码共享的特性 ## 相同的属性 ``` var common = Behavior({ properties:{ title:String, content:String, src:String } }) export {common}; ``` ## 引用 ``` import {common} from "../common" Component({ behaviors:[common] }) ``` # 重点 ## 子组件向父组件传参 ``` var behavior = this.data.isLike; this.triggerEvent('isLike',{ behavior }) ``` ## 父组件接受 ``` <v-like like="{{like}}" count="{{count}}" bind:isLike="onLike"></v-like> //获取组件中的传值 onLike(e) { var behavior = e.detail.behavior; }, ``` ## attached() > //当组件触发 attached 生命周期时,会依次触发 my-behavior 中的 attached 生命周期函数和 my-component 中的 attached 生命周期函数