小程序 mobx 本文共有1995个字,关键词: 来源:使用 MobX 来管理小程序的跨页面数据 | 微信开放社区 (qq.com) ```bash npm install —save mobx-miniprogram mobx-miniprogram-bindings ``` project.config.json ```json “packNpmManually”: true, “packNpmRelationList”: [ { “packageJsonPath”: “./package.json”, “miniprogramNpmDistDir”: “./“ } ], ``` store.js ```javascript import { observable , action } from ‘mobx-miniprogram’ export const store = observable({ numA: 1, numB: 2, //定义计算属性 get sum(){ return this.numA+this.numB }, //定义action方法,用来修改store中的数据 updateNumA:action(function(step){ this.numA+=step }) }) ``` 页面 ```html {{ numA }} + {{ numB }} = {{ sum }} numA + 1 numA -1 goPa ``` 页面js ```javascript import { createStoreBindings } from “mobx-miniprogram-bindings” import {store}from ‘../../store/store’ Page({ onLoad(options) { this.storeBindings = createStoreBindings(this, { store, fields: [‘numA’, ‘numB’, ‘sum’], actions: [‘updateNumA’] }) }, btnHandler1 (e) { this.updateNumA(e.target.dataset.step) }, goPa() { wx.navigateTo({ url: ‘/pages/storey/storey’ }) }, onUnload() { this.storeBindings.destroyStoreBingds() } }) ``` 组件 ```html {{numA}} ``` 组件js ```javascript import { storeBindingsBehavior } from ‘mobx-miniprogram-bindings’ import { store } from ‘../../store/store’ Component({ // 通过 storeBindingsBehavior 来实现自动绑定 behaviors: [storeBindingsBehavior], storeBindings: { store, // 指定要绑定的 Store // 指定要绑定的字段数据 fields: { numA:’numA’, //numA: () => store.numA, // 绑定字段的第 1 种方式 numB: (store) => store.numB, // 绑定数据的第 2 个方式 sum: ‘sum’ // 绑定数据的第 3 个方式 }, // 指定要绑定的方法 actions: { updateNumA: ‘updateNumA’ } } }) ``` 「一键投喂 软糖/蛋糕/布丁/牛奶/冰阔乐!」 赞赏 × 梦白沙 (๑>ڡ<)☆谢谢老板~ 1元 2元 5元 10元 50元 任意金额 2元 使用微信扫描二维码完成支付 版权声明:本文为作者原创,如需转载须联系作者本人同意,未经作者本人同意不得擅自转载。 小程序 2022-07-03 评论 2375 次浏览