index.js:2178警告:值类型失败:在
isRequired
中将值Select
标记为必需,但其值为undefined
。index.js:2178警告:defaultValue类型失败:在
isRequired
中将defaultValueSelect
标记为必需,但是其值为undefined
。
反应16.7
<Form layout="inline">
<Form.Item>
{
getFieldDecorator('select')(
<Select placeholder='choose' style={{ width: 100 }} onChange={this.selectPuzzle}>
{options}
</Select>
)
}
</Form.Item>
</Form>
答案 0 :(得分:0)
根据antd
文档,
应该是
{
getFieldDecorator("select", {
rules: [{ required: true, message: "Your message" }]
})(
<Select
placeholder="choose"
style={{ width: 100 }}
onChange={this.selectPuzzle}
>
{options}
</Select>
);
}