這篇文章主要介紹了微信小程序頁面調用自定義組件內的事件詳解,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
成都創(chuàng)新互聯(lián)是專業(yè)的張店網(wǎng)站建設公司,張店接單;提供網(wǎng)站設計制作、成都網(wǎng)站建設,網(wǎng)頁設計,網(wǎng)站設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行張店網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
page
page.json
{ "usingComponents": { "my-component": "../components/component/component", } }
page.wxml
page.js
Page({ //... onLoad: function () { let myComponent = this.selectComponent('#myComponent'); // 頁面獲取自定義組件實例 myComponent.componentInnerFunction(); // 通過實例調用組件事件 } //... })
component
component.js
Component({ //... methods: { componentInnerFunction: function() { console.log('i am inner function'); } } //... })
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。