想做个评论组件,可是触发评论的按钮需要放在页面容器离,小程序可以被动触发事件么,想Vue一样,父组件触发子组件那样。看文档没找到相关的知识
非常感谢 。
这个方法只能获取子组件的数据属性,调用不了方法
@Black 可以调用方法。你的方法要写在methods中才可以。
customMethod 好像没法setData呢。。
使用自定义组件时给个id
<comment id=‘com’></comment>
在页面的onLoad中取得自定义组件。
this.comment = this.selectComponent(’#com’)
this.comment.customMethod()