我有一个返回2个值的简单函数,我希望我可以将函数的返回值分解为filters对象中的sort
和sortOrder
,但如果我这样做,我会得到错误:
类型"DashboardSortingPreferences"上不存在属性"sort"。
const { this.filters.sort, this.filters.sortorder } = this.dashboardColumnSortingService.initializeDashboardSortProperties(
this.user,
this.dashboardName,
);
const { sorted_column, direction } = this.dashboardColumnSortingService.initializeDashboardSortProperties(
this.user,
this.dashboardName,
);
this.filters.sort = sorted_column;
this.filters.sortorder = direction;
这是可行的,我理解为什么,但我想知道是否可以直接在sort
和sortOrder
属性上设置sort_column
和direction
。
1条答案
按热度按时间quhf5bfb1#
Related answer.
这是可能的。在mdn web docs上我们可以看到:
因此,在您示例中,它看起来如下所示: