こんにちは、私はreactisを使ってPOSTリクエストを試みていますが、エラーが発生しましたが、すべてのドキュメントを調べましたが、エラーは解決されません。Reactjs AxiosからPOSTリクエスト
キャッチされない(約束で)エラー:要求はステータスコードで失敗しましたcreateErrorで400 (:4621)、:(bundle.jsでevalの15:15)沈降で (evalのここ
は私のエラーです、18:12) XMLHttpRequest.handleLoadで((bundle.jsで評価:4609):77:(4615 bundle.js)にて7)ここに私Reactjsコード:
import React from 'react';
import RaisedButton from 'material-ui/RaisedButton';
import TextField from 'material-ui/TextField';
import axios from 'axios';
const style = {
margin: 15,
marginLeft: 600
};
export default class Register extends React.Component {
constructor(props) {
super(props);
this.onSubmit=this.handleSubmit.bind(this);
}
handleSubmit(e) {
e.preventDefault();
var self = this;
var data = new FormData();
const payload = {
id: 111,
studentName: 'param',
age: 24,
emailId: 2
};
data.append("myjsonkey", JSON.stringify(payload));
axios('http://localhost:8083/students',{
method: 'POST',
body: data,
headers: {
// 'Authorization': `bearer ${token}`,
'Content-Type': 'application/json'
}
})
.then(function(response) {
return response.json()
}).then(function(body) {
console.log(body);
});
}
render() {
return (
<form onSubmit={this.onSubmit}>
<div style={style}>
<TextField ref='id'
hintText="Enter Student id"
floatingLabelText="id"
/>
<br/>
<TextField ref='sname'
hintText="Enter your Last Name"
floatingLabelText="StudentName"
/>
<br/>
<TextField ref='age'
hintText="Enter your Age"
floatingLabelText="age"
/>
<br/>
<TextField ref='emailId'
hintText="Enter your Email"
floatingLabelText="emailId"
/>
<br/>
<br/>
<input type="submit" />
</div>
</form>
);
}
}
これを確認してください:https://stackoverflow.com/questions/44617825/passing-headers-with-axios-post-request-reactjs/44617848#44617848また、あなたの実装では、データは 'body'と一緒に送信されます「データ」として送信 –