您好,登錄后才能下訂單哦!
這篇文章主要介紹微信小程序中怎么實(shí)現(xiàn)跨頁面數(shù)據(jù)傳遞事件響應(yīng),文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
在實(shí)際工作中有很多場景需要在第二個(gè)頁面中將用戶操作之后的將數(shù)據(jù)回傳到上一頁面。接下來將我的方案分享給小伙伴。 本次示例采用 uni-app 框架和 weui 樣式庫 實(shí)現(xiàn)思路 創(chuàng)建一個(gè) Emitter,用于事件處理 創(chuàng)建一個(gè) ...
在實(shí)際工作中有很多場景需要在第二個(gè)頁面中將用戶操作之后的將數(shù)據(jù)回傳到上一頁面。接下來將我的方案分享給小伙伴。
本次示例采用 uni-app 框架和 weui 樣式庫
實(shí)現(xiàn)思路
創(chuàng)建一個(gè) Emitter,用于事件處理
創(chuàng)建一個(gè)全局的 Storage
在第一個(gè)頁面創(chuàng)建一個(gè) emitter 對(duì)象,并添加事件監(jiān)聽,將 emitter 存儲(chǔ)到 Storage 中
在第二個(gè)頁面從 Storage 中取出 emitter 對(duì)象, 并觸發(fā)事件,將數(shù)據(jù)傳遞到第一個(gè)頁面中做處理
創(chuàng)建 Emitter
function isFunc(fn) { return typeof fn === 'function'; } export default class Emitter { constructor() { this._store = {}; } /** * 事件監(jiān)聽 * @param {String} event 事件名 * @param {Function} listener 事件回調(diào)函數(shù) */ on(event, listener) { const listeners = this._store[event] || (this._store[event] = []); listeners.push(listener); } /** * 取消事件監(jiān)聽 * @param {String} event 事件名 * @param {Function} listener 事件回調(diào)函數(shù) */ off(event, listener) { const listeners = this._store[event] || (this._store[event] = []); listeners.splice(listeners.findIndex(item => item === listener), 1); } /** * 事件監(jiān)聽 僅監(jiān)聽一次 * @param {String} event 事件名 * @param {Function} listener 事件回調(diào)函數(shù) */ once(event, listener) { const proxyListener = (data) => { isFunc(listener) && listener.call(null, data); this.off(event, proxyListener); } this.on(event, proxyListener); } /** * 觸發(fā)事件 * @param {String} 事件名 * @param {Object} 傳給事件回調(diào)函數(shù)的參數(shù) */ emit(event, data) { const listeners = this._store[event] || (this._store[event] = []); for (const listener of listeners) { isFunc(listener) && listener.call(null, data); } } }
創(chuàng)建 Storage
export class Storage { constructor() { this._store = {}; } add(key, val) { this._store[key] = val; } get(key) { return this._store[key]; } remove(key) { delete this._store[key]; } clear() { this._store = {}; } } export default new Storage();
第一個(gè)頁面中的處理
<template> <div class="page"> <div class="weui-cells__title">選擇城市</div> <div class="weui-cells weui-cells_after-title"> <navigator :url="`../select/select?id=${cityId}`" class="weui-cell weui-cell_access" hover-class="weui-cell_active"> <div class="weui-cell__hd weui-label">所在城市</div> <div class="weui-cell__bd" :>{{ cityName || '請選擇' }}</div> <div class="weui-cell__ft weui-cell__ft_in-access"></div> </navigator> </div> </div> </template> <script> import Emitter from '../../utils/emitter'; import storage from '../../utils/storage'; export default { data() { return { cityId: '', cityName: '', } }, onLoad() { const emitter = new Emitter(); // 將emitter存到storage中 storage.add('indexEmitter', emitter); // 添加事件監(jiān)聽 emitter.on('onSelect', this.handleSelect); }, methods: { // 事件處理 handleSelect(data) { this.cityId = data.id; this.cityName = data.text; } } } </script>
第二個(gè)頁面中的處理
<template> <div class="page"> <div class="weui-cells__title">城市列表</div> <div class="weui-cells weui-cells_after-title"> <radio-group @change="handleChange"> <label class="weui-cell weui-check__label" v-for="item in list" :key="item.id"> <radio class="weui-check" :value="item.id" :checked="`${item.id}` === selectedId" /> <div class="weui-cell__bd">{{ item.text }}</div> <div v-if="`${item.id}` === selectedId" class="weui-cell__ft weui-cell__ft_in-radio"> <icon class="weui-icon-radio" type="success_no_circle" size="16" /> </div> </label> </radio-group> </div> </div> </template> <script> import storage from '../../utils/storage'; export default { data() { return { list: [ { id: 0, text: '北京' }, { id: 1, text: '上海' }, { id: 2, text: '廣州' }, { id: 3, text: '深圳' }, { id: 4, text: '杭州' }, ], selectedId: '' } }, onLoad({ id }) { this.selectedId = id; // 取出 emitter this.emitter = storage.get('indexEmitter'); }, methods: { handleChange(e) { this.selectedId = e.detail.value; const item = this.list.find(({ id }) => `${id}` === e.detail.value); // 觸發(fā)事件并傳遞數(shù)據(jù) this.emitter.emit('onSelect', { ...item }); } } } </script>
以上是“微信小程序中怎么實(shí)現(xiàn)跨頁面數(shù)據(jù)傳遞事件響應(yīng)”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。