我在 redux 表单中使用名为 Uppy 的 lib,由于某种原因,redux 表单样式与 Uppy lib 冲突并错过了视图。
只是视图显示是这样的
但是这样的结果
这是代码沙箱链接 https://codesandbox.io/s/redux-form-material-ui-example-m7lhy
redux 形式的相关部分
<Grid item>
<UppySample />
</Grid>
上皮课
class UppySample extends React.Component {
constructor(props) {
super(props);
this.uppy = new Uppy({ id: "uppy1", autoProceed: false, debug: true }).use(
Tus,
{ endpoint: "https://master.tus.io/files/" }
);
}
componentWillUnmount() {
this.uppy.close();
}
render() {
return (
<React.Fragment>
<h2>Drag Drop Area</h2>
<Dashboard
uppy={this.uppy}
metaFields={[{ id: "name", name: "Name", placeholder: "File name" }]}
/>
</React.Fragment>
);
}
}
export default UppySample;
我需要为 uppySample 类禁用 redux 样式