作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 React 新手,在传递一个简单的 bool 值作为 Material UI 库中 MenuItem 的 Prop 时遇到了一些麻烦。我不认为解决方案太复杂。有人可以告诉我如何解决此错误吗?
该错误所指向的行如下所示:
<MenuItem value={true}>Yes</MenuItem>
错误看起来像这样:
The last overload gave the following error.
TS2769: No overload matches this call.
Type 'true' is not assignable to type 'string | number | readonly string[] | undefined'.
402 | onChange={handlePO_status}
403 | >
> 404 | <MenuItem let value={true}>Yes</MenuItem>
| ^^^^^
405 | <MenuItem value={false}>No</MenuItem>
406 | </Select>
407 | </FormControl>
如有任何帮助,我们将不胜感激。谢谢!
最佳答案
这对我有用,它实际上也在底层表单状态中保留了 boolean
类型(在 Material-UI v5 中)。
<MenuItem value={true as any}>True</MenuItem>
<MenuItem value={false as any}>False</MenuItem>
关于reactjs - 如何在 react ts 中将 bool 值传递给 Material UI MenuItem 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68239313/
我是一名优秀的程序员,十分优秀!