溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

微信小程序如何實(shí)現(xiàn)一個(gè)頁(yè)面監(jiān)聽自定義組件的觸發(fā)事件

發(fā)布時(shí)間:2020-11-02 09:21:17 來源:億速云 閱讀:615 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)微信小程序如何實(shí)現(xiàn)一個(gè)頁(yè)面監(jiān)聽自定義組件的觸發(fā)事件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

prompt組件:

1.首先搭建提示組件ui。由于后面各個(gè)頁(yè)面都有可能用到該組件,所以我選擇從頁(yè)面?zhèn)髦颠^來顯示提示語;
2.然后在prompt.js的點(diǎn)擊事件里指定方法名稱,該方法名稱在后面的頁(yè)面調(diào)用監(jiān)聽組件時(shí)需要用到;

// prompt.wxml
<view class="main" catchtouchmove="catchTouchMove">
 <view class="main-mask"></view>
 <view class="main-content">
 <view class="content-title">提示</view>
 <view class="content-text">{{txtTips}}</view>
 <button class="btn-confirm" bindtap="bindConfirm">確定</button>
 </view>
</view>
// prompt.js
Component({
 /**
  * 組件的屬性列表
  */
 properties: {
  txtTips: String,//聲明屬性類型
 },

 /**
  * 組件的初始數(shù)據(jù)
  */
 data: {

 },

 /**
  * 組件的方法列表
  */
 methods: {
  //確認(rèn)按鈕
  bindConfirm: function (e) {
   this.triggerEvent('events');
  },

  // 截獲豎向滑動(dòng)--禁止底部頁(yè)面滑動(dòng)
  catchTouchMove: function (res) {
   return true;
  },
 }
})

home頁(yè)面:

1.首先需要在home.json的"usingComponents"屬性里引入prompt組件地址;
2.然后在home.wxml中引入<prompt />組件,且綁定的事件名稱要跟組件中triggerEvent方法指定的名稱一致;
3.完成上面2個(gè)步驟后,我們就可以在js頁(yè)面就可以監(jiān)聽操作組件的觸發(fā)事件啦;

// home.json
{
 "usingComponents": {// 需引入自定義組件地址
  "prompt": "/component/prompt/prompt"
 }
}
// home.wxml
<view class="main">
 <button bindtap="bindEjectComponent">彈出自定義組件</button>
 <!-- 提示組件 -->
 <prompt txtTips="{{txtTips}}" bind:events="bindPromptConfirm" wx:if="{{isShowPromptComponent}}"/>
</view>
// home.js
Page({
 /**
 頁(yè)面的初始數(shù)據(jù)
  */
 data: {
  isShowPromptComponent: false,//是否顯示提示控件組件
 },

 //點(diǎn)擊彈出自定義組件
 bindEjectComponent:function(e){
  var that = this;
  that.setData({
   isShowPromptComponent: true,
   txtTips:"Hi,我是自定義提示組件喔!",
  })
 },

 //提示組件確認(rèn)事件
 bindPromptConfirm: function (e) {
  var that = this;
  that.setData({
   isShowPromptComponent: false,
  })
 },
})

關(guān)于微信小程序如何實(shí)現(xiàn)一個(gè)頁(yè)面監(jiān)聽自定義組件的觸發(fā)事件就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI