轻量级JS框架 dva
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/dvajs/dva
- 软件文档: https://github.com/dvajs/dva#getting-started
软件介绍
基于React和Redux的树型结构轻量级JS框架,(灵感来自Choo).
特点:
基于 redux, redux-saga and react-router: 站在巨人的肩膀上。
small api: 仅5个api方法,很容易学习。
elm cocepts: 基于reducers,effects和subscriptions的组织模型。
支持mobile and react-native: 跨开台
动态 model and router: 拆分大型应用程序和负载的需求
plugin system: 可扩展dva
hmr support with babel-plugin-dva-hmr
简单使用方法:
import dva, { connect } from 'dva';
// 1. Create app
const app = dva();
// 2. Add plugins (optionally)
app.use(plugin);
// 3. Register models
app.model(model);
// 4. Connect components and models
const App = connect(mapStateToProps)(Component);
// 5. Config router with Components
app.router(routes);
// 6. Start app
app.start('#root');
Microsoft.NET框架程序设计
Jeffrey Richter / 李建忠 / 清华大学出版社 / 2003-11 / 68.00元
《Microsoft.NET框架程序设计》(修订版)是《微软.NET程序员系列》丛书之一,主要介绍如何开发面向Microsoft.NET框架的各种应用程序。Microsoft.NET框架是微软公司推出的新平台,包含通用语言运行时(CLR)和.NET框架类库(FCL)。《Microsoft.NET框架程序设计》(修订版)将深入解释CLR的工作机制及其提供的各种构造,同时还将讨论FCL中一些重要的类型......一起来看看 《Microsoft.NET框架程序设计》 这本书的介绍吧!
