update tutorial
This commit is contained in:
parent
f9a14fd9b3
commit
67a8cc6ef1
|
@ -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 执行,比如:
|
||||
|
|
Loading…
Reference in New Issue