微信小程序自定义组件绑定外部方法

最近做小程序要自定义组件,涉及到自定义组件抛出并绑定外部方法,下面代码就是绑定关键

index.wxml

index.js

selectItemDetail:function(){
    //doSomeThings
  },

调用外部方法,主要是通过triggerEvent来启动外部方法

customComponent.js

methods: {
    selectItem:function() {
      this.triggerEvent("action");
    }
  }

绑定事件方法

customComponent.wxml


你可能感兴趣的:(微信小程序自定义组件绑定外部方法)