博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MobX响应式编程库
阅读量:6282 次
发布时间:2019-06-22

本文共 1152 字,大约阅读时间需要 3 分钟。

MobX

https://mobx.js.org/

https://github.com/mobxjs/mobx

 

MobX is a battle tested library that makes state management simple and scalable by transparently applying functional reactive programming (TFRP). The philosophy behind MobX is very simple:

Anything that can be derived from the application state, should be derived. Automatically.

which includes the UI, data serialization, server communication, etc.

 

 

 CORE API

https://mobx.js.org/refguide/api.html

 

EXAMPLE

https://mobx.js.org/refguide/object.html

import {observable, autorun, action} from "mobx";var person = observable({    // observable properties:    name: "John",    age: 42,    showAge: false,    // computed property:    get labelText() {        return this.showAge ? `${
this.name} (age: ${
this.age})` : this.name; }, // action: setAge: action(function(age) { this.age = age; })});// object properties don't expose an 'observe' method,// but don't worry, 'mobx.autorun' is even more powerfulautorun(() => console.log(person.labelText));person.name = "Dave";// prints: 'Dave'person.setAge(21);// etc

 

参考

https://mobx.js.org/getting-started.html

https://mobx.js.org/

 

转载地址:http://zkiva.baihongyu.com/

你可能感兴趣的文章
Django 文件下载功能
查看>>
走红日本 阿里云如何能够赢得海外荣耀
查看>>
磁盘空间满引起的mysql启动失败:ERROR! MySQL server PID file could not be found!
查看>>
点播转码相关常见问题及排查方式
查看>>
[arm驱动]linux设备地址映射到用户空间
查看>>
弗洛伊德算法
查看>>
【算法之美】求解两个有序数组的中位数 — leetcode 4. Median of Two Sorted Arrays
查看>>
精度 Precision
查看>>
Android——4.2 - 3G移植之路之 APN (五)
查看>>
Linux_DHCP服务搭建
查看>>
[SilverLight]DataGrid实现批量输入(like Excel)(补充)
查看>>
秋式广告杀手:广告拦截原理与杀手组织
查看>>
翻译 | 摆脱浏览器限制的JavaScript
查看>>
闲扯下午引爆乌云社区“盗窃”乌云币事件
查看>>
02@在类的头文件中尽量少引入其他头文件
查看>>
JAVA IO BIO NIO AIO
查看>>
input checkbox 复选框大小修改
查看>>
网吧维护工具
查看>>
BOOT.INI文件参数
查看>>
vmstat详解
查看>>