002-and design-dva.js 知識導圖-01JavaScript 語言,React Component

1、概述

參看:https://github.com/dvajs/dva-knowledgemapjavascript

 react 或 dva 時會不會有這樣的疑惑:css

  • es6 特性那麼多,我須要所有學會嗎?
  • react component 有 3 種寫法,我須要所有學會嗎?
  • reducer 的增刪改應該怎麼寫?
  • 怎麼作全局/局部的錯誤處理?
  • 怎麼發異步請求?
  • 怎麼處理複雜的異步業務邏輯?
  • 怎麼配置路由?

2、JavaScript 語言

2.一、變量聲明

const 和 let

不要用 var,而是用 const 和 let,分別表示常量和變量。不一樣於 var 的函數做用域,const 和 let 都是塊級做用域。html

const DELAY = 1000; let count = 0; count = count + 1;

模板字符串

模板字符串提供了另外一種作字符串組合的方法。java

const user = 'world'; console.log(`hello ${user}`); // hello world // 多行 const content = `  Hello ${firstName},  Thanks for ordering ${qty} tickets to ${event}. `;

默認參數

function logActivity(activity = 'skiing') { console.log(activity); } logActivity(); // skiing

箭頭函數

函數的快捷寫法,不須要經過 function 關鍵字建立函數,而且還能夠省略 return 關鍵字。react

同時,箭頭函數還會繼承當前上下文的 this 關鍵字。git

好比:es6

[1, 2, 3].map(x => x + 1); // [2, 3, 4]

等同於:github

[1, 2, 3].map((function(x) { return x + 1; }).bind(this));

模塊的 Import 和 Export

import 用於引入模塊,export 用於導出模塊。json

好比:api

// 引入所有 import dva from 'dva'; // 引入部分 import { connect } from 'dva'; import { Link, Route } from 'dva/router'; // 引入所有並做爲 github 對象 import * as github from './services/github'; // 導出默認 export default App; // 部分導出,需 import { App } from './file'; 引入 export class App extend Component {};

ES6 對象和數組

析構賦值

析構賦值讓咱們從 Object 或 Array 裏取部分數據存爲變量。

// 對象 const user = { name: 'guanguan', age: 2 }; const { name, age } = user; console.log(`${name} : ${age}`); // guanguan : 2 // 數組 const arr = [1, 2]; const [foo, bar] = arr; console.log(foo); // 1

咱們也能夠析構傳入的函數參數。

const add = (state, { payload }) => { return state.concat(payload); };

析構時還能夠配 alias,讓代碼更具備語義。

const add = (state, { payload: todo }) => { return state.concat(todo); };

對象字面量改進

這是析構的反向操做,用於從新組織一個 Object 。

const name = 'duoduo'; const age = 8; const user = { name, age }; // { name: 'duoduo', age: 8 }

定義對象方法時,還能夠省去 function 關鍵字。

app.model({ reducers: { add() {} // 等同於 add: function() {} }, effects: { *addRemote() {} // 等同於 addRemote: function*() {} }, });

Spread Operator

Spread Operator 即 3 個點 ...,有幾種不一樣的使用方法。

可用於組裝數組。

const todos = ['Learn dva']; [...todos, 'Learn antd']; // ['Learn dva', 'Learn antd']

也可用於獲取數組的部分項。

const arr = ['a', 'b', 'c']; const [first, ...rest] = arr; rest; // ['b', 'c'] // With ignore const [first, , ...rest] = arr; rest; // ['c']

還可收集函數參數爲數組。

function directions(first, ...rest) { console.log(rest); } directions('a', 'b', 'c'); // ['b', 'c'];

代替 apply。

function foo(x, y, z) {} const args = [1,2,3]; // 下面兩句效果相同 foo.apply(null, args); foo(...args);

對於 Object 而言,用於組合成新的 Object 。(ES2017 stage-2 proposal)

const foo = { a: 1, b: 2, }; const bar = { b: 3, c: 2, }; const d = 4; const ret = { ...foo, ...bar, d }; // { a:1, b:3, c:2, d:4 }

此外,在 JSX 中 Spread Operator 還可用於擴展 props,詳見 Spread Attributes

Promises

Promise 用於更優雅地處理異步請求。好比發起異步請求:

fetch('/api/todos') .then(res => res.json()) .then(data => ({ data })) .catch(err => ({ err }));

定義 Promise 。

const delay = (timeout) => { return new Promise(resolve => { setTimeout(resolve, timeout); }); }; delay(1000).then(_ => { console.log('executed'); });

Generators

dva 的 effects 是經過 generator 組織的。Generator 返回的是迭代器,經過 yield 關鍵字實現暫停功能。

這是一個典型的 dva effect,經過 yield 把異步邏輯經過同步的方式組織起來。

app.model({ namespace: 'todos', effects: { *addRemote({ payload: todo }, { put, call }) { yield call(addTodo, todo); yield put({ type: 'add', payload: todo }); }, }, });

3、React Component

Stateless Functional Components

React Component 有 3 種定義方式,分別是 React.createClassclass 和 Stateless Functional Component。推薦儘可能使用最後一種,保持簡潔和無狀態。這是函數,不是 Object,沒有 this 做用域,是 pure function。

好比定義 App Component 。

function App(props) { function handleClick() { props.dispatch({ type: 'app/create' }); } return <div onClick={handleClick}>${props.name}</div> }

等同於:

class App extends React.Component { handleClick() { this.props.dispatch({ type: 'app/create' }); } render() { return <div onClick={this.handleClick.bind(this)}>${this.props.name}</div> } }

JSX

Component 嵌套

相似 HTML,JSX 裏能夠給組件添加子組件。

<App>
  <Header /> <MainContent /> <Footer /> </App>

className

class 是保留詞,因此添加樣式時,需用 className 代替 class 。

<h1 className="fancy">Hello dva</h1>

JavaScript 表達式

JavaScript 表達式須要用 {} 括起來,會執行並返回結果。

好比:

<h1>{ this.props.title }</h1>

Mapping Arrays to JSX

能夠把數組映射爲 JSX 元素列表。

<ul> { this.props.todos.map((todo, i) => <li key={i}>{todo}</li>) } </ul>

註釋

儘可能別用 // 作單行註釋。

<h1> {/* multiline comment */} {/*  multi  line  comment  */} { // single line } Hello </h1>

Spread Attributes

這是 JSX 從 ECMAScript6 借鑑過來的頗有用的特性,用於擴充組件 props 。

好比:

const attrs = { href: 'http://example.org', target: '_blank', }; <a {...attrs}>Hello</a>

等同於

const attrs = { href: 'http://example.org', target: '_blank', }; <a href={attrs.href} target={attrs.target}>Hello</a>

Props

數據處理在 React 中是很是重要的概念之一,分別能夠經過 props, state 和 context 來處理數據。而在 dva 應用裏,你只需關心 props 。

propTypes

JavaScript 是弱類型語言,因此請儘可能聲明 propTypes 對 props 進行校驗,以減小沒必要要的問題。

function App(props) { return <div>{props.name}</div>; } App.propTypes = { name: React.PropTypes.string.isRequired, };

內置的 prop type 有:

  • PropTypes.array
  • PropTypes.bool
  • PropTypes.func
  • PropTypes.number
  • PropTypes.object
  • PropTypes.string

往下傳數據

往上傳數據

CSS Modules

理解 CSS Modules

一張圖理解 CSS Modules 的工做原理:

button class 在構建以後會被重命名爲 ProductList_button_1FU0u 。button 是 local name,而 ProductList_button_1FU0u 是 global name 。你能夠用簡短的描述性名字,而不須要關心命名衝突問題。

而後你要作的所有事情就是在 css/less 文件裏寫 .button {...},並在組件裏經過 styles.button 來引用他。

定義全局 CSS

CSS Modules 默認是局部做用域的,想要聲明一個全局規則,可用 :global 語法。

好比:

.title {
  color: red; } :global(.title) { color: green; }

而後在引用的時候:

<App className={styles.title} /> // red <App className="title" /> // green

classnames Package

在一些複雜的場景中,一個元素可能對應多個 className,而每一個 className 又基於一些條件來決定是否出現。這時,classnames 這個庫就很是有用。

import classnames from 'classnames'; const App = (props) => { const cls = classnames({ btn: true, btnLarge: props.type === 'submit', btnSmall: props.type === 'edit', }); return <div className={ cls } />; }

這樣,傳入不一樣的 type 給 App 組件,就會返回不一樣的 className 組合:

<App type="submit" /> // btn btnLarge <App type="edit" /> // btn btnSmall
相關文章
相關標籤/搜索