我正在从我的ReactJS前端应用程序向我的node / express后端发送一些数据,但是,每当我发送数据时,我都会收到标题中提到的错误消息。
这是我的ReactJS代码:
class App extends React.Component {
constructor(props) {
super(props);
//states and binding functions
}
fetchData () {
fetch('/users')
.then(res => res.json())
.then(users => this.setState({users}));
}
addUser (event) {
let fileData = new FormData();
fileData.append("file", this.state.filesToBeSent);
axios.post('adduser',
querystring.stringify({
entry: this.state.currname,
passwrd: this.state.currpasswrd,
fileData : fileData
})
)
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
}
componentDidMount() {
this.fetchData();
}
render() {
return (
<div className="App">
<form onSubmit={this.addUser} encType="multipart/form-data">
<label>New username:</label>
<input value={this.state.currname} onChange={this.handleChange}></input>
<input value={this.state.currpasswrd} onChange={this.handlePassword} />
<input type="file" name="file" onChange={this.handleFile} />
<button type="submit" >Add</button>
</form>
<h1>Current Users: </h1>
{this.state.users.map((name, n) =>
//map through user-array and display names
)}
</ul>
</div>
);
}
}
(对不起,如果这是很多代码,我尽可能缩短它,但我不确定哪个部分与问题相关)。
以下是我如何在节点中接收数据以及如何将其中的部分内容保存到我的数据库中:
const storage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, "./uploads/");
},
filename: (req, file, cb) => {
const newFilename = `${uuidv4()}${path.extname(file.originalname)}`;
cb(null, newFilename);
},
})
const upload = multer({ storage });
router.post("/", upload.single("file"), (req, res) => {
res.send(req.file + " and exit.");
var newUser = new Todo();
newUser.username = req.body.entry;
newUser.passwrd = req.body.passwrd;
newUser.save(function (err) {
if(err)
res.send(err);
res.send('User added successfully!');
});
});
这是奇怪的地方。应用程序运行完美,直到我插入upload.single("file")
,然而,我似乎无法弄清楚原因。我刚刚有文本输入时没有任何问题,即使我创建了FormData()
等,它仍然正常工作,直到我实现它。
我尝试查找并实现此处发布的答案,但似乎没有任何帮助。
在屏幕上,我收到以下错误消息:Unhandled Rejection (SyntaxError): Unexpected token P in JSON at position 0
当我检查终端时,我收到标题中提到的错误消息。我尝试删除内容标题(不确定会做什么,但我实现文件上传的教程没有使用内容标题,这就是我尝试删除它们的原因。
有谁知道如何解决这个错误?
编辑:终端中的错误消息还包含ECONNRESET
。我按照终端https://nodejs.org/api/errors.html#errors_common_system_errors中的链接,但我仍然不确定如何解决这个问题。
答案 0 :(得分:0)
我建议您将所有字段附加到FormData
对象,并且不要将提交的数据转换为json字符串:
let fileData = new FormData();
fileData.append("entry", this.state.currname);
fileData.append("passwrd", this.state.currpasswrd);
fileData.append("file", this.state.filesToBeSent);
axios.post('adduser', fileData)
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});