【发布时间】:2020-06-19 11:28:09
【问题描述】:
我正在尝试复制此库的演示:https://react-jsonschema-form.readthedocs.io/en/latest/
为了自动创建表单,具体来说,我正在尝试以下示例:
为此,我正在执行以下步骤:
1) 使用以下命令创建项目:npm init react-app formapp
2)安装de依赖:yarn add react-jsonschema-form
在这一步之后,如果我将应用程序运行为:npm start
它有效,我得到:
3) 我正在用代码覆盖 app.Js:
import React from "react";
import Form from "react-jsonschema-form";
const Form = JSONSchemaForm.default;
const schema = {
title: "Todo",
type: "object",
required: ["title"],
properties: {
title: {type: "string", title: "Title", default: "A new task"},
done: {type: "boolean", title: "Done?", default: false}
}
};
const log = (type) => console.log.bind(console, type);
ReactDOM.render((
<Form schema={schema}
onChange={log("changed")}
onSubmit={log("submitted")}
onError={log("errors")} />
), document.getElementById("app"));
现在,当我尝试启动应用程序时,出现此错误:
Failed to compile
./src/App.js
Line 4:7: Parsing error: Identifier 'Form' has already been declared
2 | import Form from "react-jsonschema-form";
3 |
> 4 | const Form = JSONSchemaForm.default;
| ^
5 | const schema = {
6 | title: "Todo",
7 | type: "object",
This error occurred during the build time and cannot be dismissed.
所以我评论了第四行:
import React from "react";
import Form from "react-jsonschema-form";
//const Form = JSONSchemaForm.default;
const schema = {
title: "Todo",
type: "object",
又试了一次,然后我得到了另一个错误:
Failed to compile
./src/index.js
Attempted import error: './App' does not contain a default export (imported as 'App').
编辑:
这是我正在使用的索引文件的代码:
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
serviceWorker.unregister();
【问题讨论】:
-
你能提供你的 index.js 吗?看起来您通过 import App from './app.js' 之类的方式导入了上述脚本;我对吗?但你不会从你的 app.js 中导出 App
-
@BastianFießinger 刚刚添加
标签: javascript reactjs forms