欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

微信小程序8種數(shù)據(jù)通信的方式小結(jié)

 更新時(shí)間:2020年02月03日 10:53:25   作者:WahFung  
這篇文章主要介紹了微信小程序8種數(shù)據(jù)通信的方式小結(jié),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧

前言

數(shù)據(jù)通信在開(kāi)發(fā)中是必不可少的一個(gè)環(huán)節(jié),也是我們必須掌握的知識(shí)。知道得越多的數(shù)據(jù)通信方式,實(shí)現(xiàn)業(yè)務(wù)會(huì)更加得心應(yīng)手。

下面我將這些通信方式歸類介紹:

  • 組件通信
  • 全局通信
  • 頁(yè)面通信

組件通信

properties

父組件向子組件通信,與 Vue 的 props 作用相同。

父組件向子組件傳數(shù)據(jù):

<my-component list="{{list}}"></my-component>

子組件接收數(shù)據(jù):

Component({
 properties:{
  list:{
   type: Array,
   value: []
  }
 },
 attached(){
  console.log(this.list)
 }
})

triggerEvent

子組件向父組件通信,與 Vue 的 $emit 作用相同
子組件觸發(fā)自定義事件:

Component({
 attached(){
  this.triggerEvent('customEvent',{ id: 10 })
 }
})

父組件接收自定事件:

<my-component list="{{list}}" bind:customEvent="customEvent"></my-component>
Page({
 customEvent(e){
  console.log(e.detail.id)
 }
})

selectComponent

使用選擇器選擇組件實(shí)例節(jié)點(diǎn),返回匹配到的第一個(gè)組件實(shí)例對(duì)象,類似 Vue 的 ref

<my-component id="mycomponent" list="{{list}}"></my-component>
Page({
 onLoad(){
  let mycomponent = this.selectComponent('#mycomponent')
  mycomponent.setData({
   list: []
  })
 }
})

selectOwnerComponent

選取當(dāng)前組件節(jié)點(diǎn)所在的組件實(shí)例(即組件的引用者),返回它的組件實(shí)例對(duì)象,類似 Vue 的 $parent

Component({
 attached(){
  let parent = this.selectOwnerComponent()
  console.log(parent)
 }
})

全局通信

globalData

將數(shù)據(jù)掛載到 app.js,這種方式在開(kāi)發(fā)中很常用。通過(guò)getApp(),我們能夠在任何一個(gè)頁(yè)面內(nèi)訪問(wèn)到app實(shí)例。
app.js

App({
 globalData:{
  list:[]
 }
})

page1.js

const app = getApp()
Page({
 onLoad(){
  app.globalData.list.push({
   id: 10
  })
 }
})

page2.js

const app = getApp()
Page({
 onLoad(){
  console.log(app.globalData.list) // [{id:10}]
 }
})

storage

storage并不是作為通信的主要方式。storage 主要是為了緩存數(shù)據(jù),并且最多只能存儲(chǔ)10M的數(shù)據(jù),我們應(yīng)該合理使用storage

wx.setStorageSync('timestamp', Date.now())
wx.getStorageSync('timestamp')
wx.removeStorageSync('timestamp')

eventBus

通過(guò)發(fā)布訂閱模式注冊(cè)事件和觸發(fā)事件進(jìn)行通信

簡(jiǎn)單實(shí)現(xiàn)

class EventBus{
 constructor(){
  this.task = {}
 }

 on(name, cb){
  if(!this.task[name]){
   this.task[name] = []
  }
  typeof cb === 'function' && this.task[name].push(cb)
 }

 emit(name, ...arg){
  let taskQueen = this.task[name]
  if(taskQueen && taskQueen.length > 0){
   taskQueen.forEach(cb=>{
    cb(...arg)
   })
  }
 }

 off(name, cb){
  let taskQueen = this.task[name]
  if(taskQueen && taskQueen.length > 0){
   let index = taskQueen.indexOf(cb)
   index != -1 && taskQueen.splice(index, 1)
  }
 }

 once(name, cb){
  function callback(...arg){
   this.off(name, cb)
   cb(...arg)
  }
  typeof cb === 'function' && this.on(name, callback)
 }
}

export default EventBus

使用

app.js

import EventBus from '/util/EventBus'

wx.$bus = new EventBus()
page1.js
Page({
 onLoad(){
  wx.$bus.on('add', this.addHandler)
 },
 addHandler(a, b){
  console.log(a+b)
 }
})

page2.js

Page({
 onLoad(){
  wx.$bus.emit('add', 10, 20)
 },
})

頁(yè)面通信

getCurrentPages

getCurrentPages() 獲取當(dāng)前頁(yè)面棧,數(shù)組中第一個(gè)元素為首頁(yè),最后一個(gè)元素為當(dāng)前頁(yè)面
元素為一個(gè)對(duì)象,里面存放著頁(yè)面的信息,包括route(頁(yè)面路徑)、options(onLoad拿到的參數(shù))、method、data等

Page({
 onLoad(){
  let pages = getCurrentPages()
  let lastPage = pages[pages.length-2]
  lastPage.setData({
   list: []
  })
 }
})

寫在最后

如果你還有其他的通信方式,歡迎交流~以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論