如何管理 React 中的状态
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何管理 React 中的状态相关的知识,希望对你有一定的参考价值。
参考技术A 1. 通过MobX来解决MobX 是一个简单、高效的前端状态管理脚本库。 根据文档,Just do something to the state and MobX will make sure your app respects the changes。
var person = mobx.observable(
firstName: 'Matt',
lastName: 'Ruby',
age: 37,
fullName: function ()
this.firstName + ' ' + this.lastName;
);
以上是关于如何管理 React 中的状态的主要内容,如果未能解决你的问题,请参考以下文章