谁能解释语法

问题描述 投票:0回答:2
  const lastTick = this.xAxis[0].ticks[this.xAxis[0].tickPositions.length - 1];
  const { width } = lastTick.label.getBBox();
  const { chartWidth } = this;
  lastTick.label.attr({ x: chartWidth - (0.7) * width });

这是高图代码。我想要{ width }{ chartWidth }的含义。

javascript angular highcharts
2个回答
-2
投票

具有内部属性

const { chartWidth } = this;

与]相同>

const chartWidth = this.chartWidth;

-2
投票

称为Destructuring assignment。类似于写

© www.soinside.com 2019 - 2024. All rights reserved.