我的前端代码:
<form action="" onSubmit={this.search}>
<input type="search" ref={(input) => { this.searchInput = input; }}/>
<button type="submit">搜索</button>
</form>
// search method:
const baseUrl = 'http://localhost:8000/'; // where the Express server runs
search(e) {
e.preventDefault();
let keyword = this.searchInput.value;
if (keyword !== this.state.lastKeyword) {
this.setState({
lastKeyword: keyword
});
fetch(`${baseUrl}search`, {
method: 'POST',
// mode: 'no-cors',
headers: new Headers({
'Content-Type': 'application/json'
}),
// credentials: 'include',
body: JSON.stringify({keyword})
})
}
}
我的 Express.js 服务器代码:
app.all('*', (req, res, next) => {
res.header("Access-Control-Allow-Origin", "*");
res.header('Access-Control-Allow-Methods', 'POST, GET, OPTIONS');
res.header('Access-Control-Allow-Headers', 'Content-Type');
// res.header('Access-Control-Allow-Credentials', true);
res.header('Content-Type', 'application/json; charset=utf-8')
next();
});
当我提交表单时,我收到了两个请求。其中一个是 OPTIONS 请求,另一个是 POST 请求,并且对它的响应是正确的:
如您所见,Express 服务器运行在 8000 端口,而 React 开发服务器运行在 3000 端口。localhost:3000
正在请求localhost:8000/search
,并且localhost:8000
正在通过使用 POST 方法请求另一个源。但是,只有第二个请求运行良好。我不知道这是怎么发生的。当然,如果我使用查询字符串发出 GET 请求,一切正常。但我也想知道如何使用请求正文进行 POST 获取。