ant design import Import.Search 问题
antd design import Import.Search issue
我在这里遵循了 Input.Search 示例 https://ant.design/components/input/
import { Input } from 'antd';
const Search = Input.Search;
ReactDOM.render(
<Search placeholder="input search text" onSearch={value => console.log(value)} />
, mountNode);
我收到以下错误:
未捕获错误:元素类型无效:应为字符串(对于内置组件)或 class/function(对于复合组件)但得到:未定义
知道为什么吗?
如果我使用 <Input .../>
组件,它工作得很好。为什么 <Input.Search .../>
中断?
Input.Search
是在antd@2.5.0
之后导入的,见:https://ant.design/changelog#2.5.0
从ant design导入Search 输入你的代码有误
导入搜索的正确语法如下:-
const {搜索} = 输入;
我在这里遵循了 Input.Search 示例 https://ant.design/components/input/
import { Input } from 'antd';
const Search = Input.Search;
ReactDOM.render(
<Search placeholder="input search text" onSearch={value => console.log(value)} />
, mountNode);
我收到以下错误:
未捕获错误:元素类型无效:应为字符串(对于内置组件)或 class/function(对于复合组件)但得到:未定义
知道为什么吗?
如果我使用 <Input .../>
组件,它工作得很好。为什么 <Input.Search .../>
中断?
Input.Search
是在antd@2.5.0
之后导入的,见:https://ant.design/changelog#2.5.0
从ant design导入Search 输入你的代码有误
导入搜索的正确语法如下:-
const {搜索} = 输入;