Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个超级简单的 ReactJs Codesandbox有人可以解释它是如何showSelectedFiles: false 工作的。我阅读了用户选择文件后所选文件被隐藏但它们不在我的沙箱中的文档。
showSelectedFiles: false
我做错了什么?
您需要将选项作为道具传递给您<Dashboard>,而不是像这样初始化 Uppy() 时:
<Dashboard>
render() { return ( <Dashboard uppy={this.uppy} plugins={["Webcam"]} showSelectedFiles={false} /> ); }