Skip to content

Commit

Permalink
Update 140.精读《结合 React 使用原生 Drag Drop API》.md
Browse files Browse the repository at this point in the history
  • Loading branch information
changyuqing authored Feb 26, 2020
1 parent 1b0a7ed commit 67a289e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 140.精读《结合 React 使用原生 Drag Drop API》.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const DropItem = (
)
```

`DragContainer` 包裹可以被拖拽的元素,`DragContainer` 包裹可以被拖入的元素,而至于 `dragProps``dropProps` 需要透传到子元素的 dom 节点,是为了利用 DOM API 控制拖拽效果,这也是拖拽唯一对 DOM 的要求,双方元素都需要有实体 DOM 承载。
`DragContainer` 包裹可以被拖拽的元素,`DropContainer` 包裹可以被拖入的元素,而至于 `dragProps``dropProps` 需要透传到子元素的 dom 节点,是为了利用 DOM API 控制拖拽效果,这也是拖拽唯一对 DOM 的要求,双方元素都需要有实体 DOM 承载。

而上面例子中给出 `dragProps``dropProps` 的方式属于 RenderProps,我们可以将 `children` 当作函数执行以达到效果:

Expand Down

0 comments on commit 67a289e

Please sign in to comment.