const {xxx} 写法

2023-01-04  本文已影响0人  寻找无名的特质

使用vue flow时,遇到下面的定:
const { onPaneReady, onNodeDragStop, onConnect, addEdges, setTransform, toObject,onNodeClick } = useVueFlow()
这实际上是es6的简写,说明如下。

const {xxx} = this.state
是es6得写法,相当于
const xxx= this.state.xxx
const {comment,index}= this
含义相当于:
const comment=this.comment
const index=this.index

语言的进化为了方便,但当进化到一定程度,可能会产生新的语义。

上一篇下一篇

猜你喜欢

热点阅读