我有 useState 如下:
const [orderStandard, setOrderStandard] = useState("total");
并且根据orderStandard的值,我想给出props。
下面的代码是带有ReactJS的BootStrap的ButtonGroup。
https://react-bootstrap.github.io/components/button-group/#button-toolbar-props
上面,Button 的 props 中,active 使按钮被选中。
所以我将其设为如下条件。
但是它会抛出错误。错误提示:'...'预期.ts(1005)
所以我用 ...
但是当我在上面编写代码时,它说 active props 未定义。
我怎样才能做到?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
您收到
'active' is not Defined因为您尝试使用active作为变量,而不是将其用作Button的属性。试试这个