update tutorial

This commit is contained in:
张磊 2019-01-17 11:54:59 +08:00
parent f9a14fd9b3
commit 67a8cc6ef1
1 changed files with 8 additions and 0 deletions

View File

@ -4,6 +4,14 @@ Spread Operator 是我最喜欢的语法糖,没有之一,在应用场景上
这是对应的 [babel 插件](https://babeljs.io/docs/en/next/babel-plugin-proposal-object-rest-spread.html),当然直接使用 typescript 或者直接使用 omi-cli 已经内置了这个特性,可以直接使用。
### JSX 里的 for 循环
```js
{[...Array(10)].map((x, i) => (
<div>{i}</div>
))}
```
### 不使用 Apply
apply 和 call 可以执行函数,改变 this 执行,比如: