gpt4 book ai didi

javascript - react : Spread the return of a function in one line

转载 作者:行者123 更新时间:2023-12-03 14:00:32 24 4
gpt4 key购买 nike

是否可以直接传播函数的结果,而不是存储然后传播它?换句话说,有没有办法将这两行缩减为一行?

const toto = removePreviousCase();
setMap({
...toto,
player: {
y: selectedCase.y,
x: selectedCase.x
}
});

最佳答案

只需将 removePreviousCase 调用传播到调用 setMap 的对象中即可:

setMap({
...removePreviousCase(),
player: {
y: selectedCase.y,
x: selectedCase.x
}
});

(也就是说,请记住,干净、可读的代码通常是更重要的事情 - 如果将其分离到不同的行中更具可读性,请不要害怕这样做。只有在代码- 高尔夫 is the objective )

另一个选项是:

const {
x,
y
} = selectedCase;
setMap({
...removePreviousCase(),
player: {
x,
y
});

关于javascript - react : Spread the return of a function in one line,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59331458/

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