React的一个单向数据流框架。
优点
内部实现依赖于Redux。但是简化了Redux的使用方法。
action层只需要返回action方法的处理结果,无需action去dispatch处理的结果。
store层,无需写大量的switch判断,而是采用reflux的风格,直接使用onXXXX来响应Action的处理。
view层无需自己去依赖action和store层,而是直接采用简单的配置,就能自动将action和store中的数据绑定到组件的props中。
view层中调用的action方法如果是异步方法会将返回值中的promise对象透传到view层。
action层和view层,都可以直接访问store中的Get方法。但是view层和action层,都无法访问store中的非get方法。这样既能保证调用的灵活性,又能保证数据流的单向流动。
跟其他框架相比,用户省去了大量自己手动书写的对数据的pub/sub的代码。
安装
npm install --save react-rebix
使用
import Rebix from 'react-rebix';
OR
<script src="/node_modules/react/dist/react.min.js"></script> <script src="/node_modules/react-dom/dist/react-dom.js"></script> <script src="/node_modules/react-rebix/dist/react-rebix.min.js"></script>
示例
TodoMVC
https://github.com/ubibi/rebix-todo-demo
https://github.com/luanhaipeng/rebix/tree/master/example/example
Action
Action中可访问Store中的getXXX方法,其他方法不能访问。
支持三种Action
异步 Action, 一定要返回一个Promise对象
普通 Action,直接返回处理结果的js对象。
空Action, 不需要具体的实现,具体操作在Store中完成.
import Rebix from 'react-rebix'; import UserStore from '../stores/UserStore'; export default Rebix.createActions({ /** * 异步 Action * 一定要返回一个Promise对象 */ getUserInfo: function (params) { //Action 中可以访问Store中的数据。但是只能调用get方法。 //Store 中的其他方法,不会对外暴露,这样方便了数据的访问,同时又保证了数据的单向流动。 var userInfo = UserStore.getUserInfo(123); return new Promise(function (resolve) { setTimeout(function () { //store层使用action.promise字段接受返回值 resolve({ time: new Date().getTime(), userInfo: userInfo, params: params }); }, 1000) }) }, /** * 普通 Action */ getUserList: function (params) { //store层使用action.payload字段接受返回值 return [1, 2, 3, params]; }, /** * 空Action, 不需要具体的实现 * 具体操作在Store中完成. */ beginEditUserInfo: null, /** * 空Action, 不需要具体的实现 * 具体操作在Store中完成. */ endEditUserInfo: null });
Store
Store中的数据存储,强烈建议使用immutable,这里为了演示方便,通过Object.assign({}, state)创建了一个新对象。
说明:
为了保证数据的单向流动,通过CreateStore创建的onXXXX函数,view层和action层根本调用不到。
为了方便action和view层使用数据,通过CreateStore创建的getXXXX函数,view层和action层都可以调用到。
一般来说action文件和store文件是一一对应的,但是有时候一个action的处理结果需要几个store层各自处理。这里提供了加井号前缀的方式实现。比如:post#onGetPostList(在UserStore中响应PostAction的结果。)
import Rebix from 'react-rebix'; export default Rebix.createStore({ initialState: { userList: [], postList: [] }, //类似Reflux。Action中的处理结束后,会把数据传递给Store //这里处理:action中方法 getUserList 的返回值。 'onGetUserList': function (state, action) { console.log(action.status); state = Object.assign({}, state); var userList = action.payload; state.userList = userList; return state; }, //处理action中beginEditUserInfo的行为。 'onBeginEditUserInfo': function (state) { state = Object.assign({}, state); state.isEditing = true; return state; }, //处理action中onEndEditUserInfo的行为。 'onEndEditUserInfo': function (state) { state = Object.assign({}, state); state.isEditing = false; return state; }, /** * 为了响应其它Action方法中的处理,要加#前缀 */ 'post#onGetPostList': function (state, action) { console.log(action.status); if (action.status === 'success') { state = Object.assign({}, state); var postList = action.payload; state.postList = postList; } return state; }, /** * Get函数,修改state不管用.state内部一般都是使用immutable对象,只有on函数的返回值才能对state进行修改. * View 层,可以直接调用Get函数获取Store中的数据,但是无法修改. * 在Get函数内部对state的任何修改,都不会生效. */ 'getUserInfo': function (state, a, b, c, d) { return { name: a }; } });
Config
通过Config,将action、store等资源集中起来。这样的目的是为了在view层,无需再引入大量的action、store的js文件。
说明:
createConfigure中只有三个配置项。
initialState 是用来做服务端初次数据渲染用的。
actions 所有action的集合。
stores所有stores的结合。
actions和stores中配置的key值基本保证是一一对应的。如下:user和post
import Rebix from 'react-rebix'; import UserActions from '../actions/UserActions'; import PostActions from '../actions/PostActions'; import UserStore from '../stores/UserStore'; import PostStore from '../stores/PostStore'; export default Rebix.createConfigure({ initialState: null, actions: { user: UserActions, post: PostActions }, stores: { user: UserStore, post: PostStore } });
View
注意:
Action中可访问Store中的getXXX方法,其他方法不能访问。
View层通过Rebix.createComponent将action和store自动绑定到组建的props中。
Store发生了变化,会自动update,因此强烈建议重写shouldComponentUpdate来避免重复渲染。这里跟redux是一样的。
import React, {PropTypes} from 'react'; import createRebixComponent from '../config/createRebixComponent'; import UserStore from '../stores/UserStore'; import RebixConfigure from './RebixConfigure'; class Hello extends React.Component { constructor(props) { super(props); this.state = { userInfo: {} }; } componentDidMount() { var that = this; var {actions} = that.props; var mm = actions.getUserList(1234); var mm2 = actions.beginEditUserInfo(1234); actions.getPostList('absdf', 'sdf').then(function () { debugger; }); setTimeout(function () { //直接访问Store中的数据 var userInfo = UserStore.getUserInfo(121); that.setState({userInfo: userInfo}); }, 2000) } render() { var userList = this.props.userList || []; var postList = this.props.postList || []; var userInfo = this.state.userInfo || {}; return ( <div> aaa---{userInfo.name} <br/> bbb--- {userList.map(function (x) { return <div>{x}</div> })} <hr/> ccc--- {postList.map(function (x) { return <div>{x}</div> })} </div> ); } } export default Rebix.createComponent(RebixConfigure, Hello, { actions: { getUserList: 'user.getUserList', //请参考config文件中的配置。 getPostList: 'post.getPostList', beginEditUserInfo: 'user.beginEditUserInfo' }, props: { userList: 'user.userList', postList: 'user.postList' } });
原理
内部实现还是使用Redux,只有一个唯一的Store,通过connect自动完成对store数据变化的pub/sub机制。
License
MIT
联系我
Email: master@ubibi.cn
更新 2023/5/11 第十三题 更新了bridge部分,详细参照 React Native 架构浅析 以下答案为参考了一些资料并思考后汇总,还没想通的就没有写进来,如果有好的回答请在评论区留言~ 后续了解更多rn的知识后会补充以及更新 1. react native中的ScrollView组件是什么 ScrollView 组件是一个通用滚动容器,可以承载多个组件和视图。您可以垂直和水平滚动(通
React简介 一、React是什么? 二、为什么要使用React 三、React特点 React简介 一、React是什么? React是一个将数据渲染为HTML视图的开源JavaScript库。 二、为什么要使用React 1·原生JavaScript操作DOM繁琐、效率低 2·使用JavaScript直接操作DOM,浏览器会进行大量的重绘重排。 3·原生JavaScript没有组件化编码方案
单向数据流只关注于在store中维护的唯一的state,消除了不必要的多种states带来的复杂度. 这个store应该具有能被我们订阅(subscribe)store中变化的能力,实现如下: var Store = { _handlers: [], _flag: '', onChange: function (handler) { this._handlers.push(ha
本文向大家介绍说说你对单向数据流和双向数据流的理解相关面试题,主要包含被问及说说你对单向数据流和双向数据流的理解时的应答技巧和注意事项,需要的朋友参考一下 单向数据流:所有状态的改变可记录、可跟踪,源头易追溯;所有数据只有一份,组件数据只有唯一的入口和出口,使得程序更直观更容易理解,有利于应用的可维护性;一旦数据变化,就去更新页面(data-页面),但是没有(页面-data);如果用户在页面上做了
本文向大家介绍深入理解Vue 单向数据流的原理,包括了深入理解Vue 单向数据流的原理的使用技巧和注意事项,需要的朋友参考一下 单向数据流是什么 单向数据流指只能从一个方向来修改状态。下图是单向数据流的极简示意: 单向数据流的极简示意 与单向数据流对对应的是双向数据流(也叫双向绑定)。在双向数据流中,Model(可以理解为状态的集合) 中可以修改自己或其他Model的状态, 用户的操作(如在输入框
10.5 数据流重导向 数据流重导向 (redirect) 由字面上的意思来看,好像就是将“数据给他传导到其他地方去”的样子? 没错~数据流重导向就是将某个指令执行后应该要出现在屏幕上的数据, 给他传输到其他的地方,例如文件或者是设备 (例如打印机之类的)!这玩意儿在 Linux 的文字模式下面可重要的! 尤其是如果我们想要将某些数据储存下来时,就更有用了! 10.5.1 什么是数据流重导向 什么
单项数据绑定 在 Vue 中,可以通过 v-model 指令来实现双向数据绑定。但是,在 React 中并没有指令的概念,而且 React 默认不支持 双向数据绑定。 React 只支持,把数据从 state 上传输到 页面,但是,无法自动实现数据从 页面 传输到 state 中 进行保存。 React中,只支持单项数据绑定,不支持双向数据绑定。不信的话,我们来看下面这个例子: import Re
我试图从一个数据流作业中运行两个分离的管道,类似于下面的问题: 一个数据流作业中的并行管道 如果我们使用单个p.run()使用单个数据流作业运行两个分离的管道,如下所示: 我认为它将在一个数据流作业中启动两个独立的管道,但它会创建两个包吗?它会在两个不同的工人上运行吗?
我正在使用Pandas,希望将行添加到已建立列的空数据框中。 到目前为止,我的代码看起来像这样。。。 然而,当我跑步的时候。。。 数据框返回时没有行,只有列。我不确定我做错了什么,但我很确定它与append方法有关。有人知道我做错了什么吗?
问题内容: 假设我有一个看起来像这样的数据框: 假设此数据帧已经存在,如何简单地在列索引中添加级别“ C”,以便得到此信息: 我看到了像这样的python / pandas这样的ananser:如何将两个数据帧与具有分层列索引的一个合并在一起?但这会连接不同的数据框,而不是在现有数据框上添加列级别。 -- 问题答案: 正如@StevenG自己建议的那样,一个更好的答案是: