gpt4 book ai didi

reactjs - 预期属性简写

转载 作者:行者123 更新时间:2023-12-05 00:44:40 25 4
gpt4 key购买 nike

我是新手,遇到了这个错误,不太清楚这意味着什么。

错误:tree 的预期属性简写:tree - 由 eslint 触发?

import {
tree, tree1, tree2, tree3, tree4,
} from './Tree';

export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {
tree: tree,
downloadingChart: false,
config: {},
// highlightPostNumbers: [1],
};
}

最佳答案

ESLint 希望你在状态对象中使用速记:

    this.state = {
tree,
downloadingChart: false,
config: {},
// highlightPostNumbers: [1],
};

如果您引用的变量与您定义的键名相同,则您不必声明键和值。您也可以使用 ESLint 的 object shorthand rules 禁用它。 .

关于reactjs - 预期属性简写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66530283/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com