gpt4 book ai didi

reactjs - 使用按钮上传 Material-UI 文件

转载 作者:行者123 更新时间:2023-12-01 21:20:01 26 4
gpt4 key购买 nike

我正在尝试通过单击按钮上传文件,但存在一些问题。

                  <label>
<input
style={{ display: 'none' }}
type="file"
/>
<Button variant="contained" color="default">Upload</Button>
</label>

这是我的代码,但单击按钮时文件上传不起作用,因此未检测到输入。我该如何解决?

我正在使用 React 和 Material-UI。

最佳答案

您可能会错过输入的 id:

让我们试试:

  <input
style={{ display: "none" }}
id="contained-button-file"
type="file"
/>
<label htmlFor="contained-button-file">
<Button variant="contained" color="primary" component="span">
Upload
</Button>
</label>
</div>

关于reactjs - 使用按钮上传 Material-UI 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63890764/

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