因此,今天下午早些时候,这个小宝石花了我多得多的时间。 (这有助于我在凌晨2:00左右发布此查询。)
const sortedDataset = { "labels": [], "data": [], "backgroundColors": [], "borderColors": [] }
newIndices.forEach((value, index) => {
sortedDataSet.labels[index] = combinedSet.labels[value]
sortedDataSet.data[index] = combinedSet.data[value]
sortedDataSet.backgroundColors[index] = $scope.getBackgroundColor(index)
sortedDataSet.borderColors[index] = $scope.getBorderColor(index)
})
我将直接讲到它-没有sortedDataSet这样的变量;其名为sortedDataset。您可能会认为熟练的IDE应该比我发现它所需的精力少得多。
有什么方法可以配置Visual Studio为我做标记?这似乎是倒退了一大步-我觉得这是1993年,在我学会使用Option Explicit之前,我正在VB3中进行编码。感谢您的建议。