Material-UI SSR标记与客户端不匹配

时间:2017-11-01 20:41:23

标签: reactjs material-ui ssr

我使用MaterialUI w / React 16 w /服务器端渲染。一切似乎都在蠢蠢欲动,但React抱怨服务器端和客户端标记不匹配。我做错了什么?

反应警告:Warning: Prop 'htmlFor' did not match. Server: "undefined-undefined-CurrentValue-9124" Client: "undefined-undefined-CurrentValue-51839"

        <TextField
          className="mr-3"
          disabled={true}
          floatingLabelText="Current Value"
          value={props.inputValue}
        />

1 个答案:

答案 0 :(得分:0)

事实证明,一旦发布MUI 1.0,这个错误就不会再存在。在输入字段中添加id属性会使警告暂时消失。

详细信息:https://github.com/callemall/material-ui/issues/9033#issuecomment-342569426