如何使用React前端和Flask后端处理HTTP请求

时间:2019-04-28 12:26:43

标签: reactjs flask pycharm httprequest

我正在使用Flask框架为后端和前端React创建一个Web应用程序。我想使用http请求将两者连接起来,但是我不知道从哪里开始。我在前端和后端都使用 PyCharm IDE

我看过react-http-request库,但我不理解。

我希望能够从前端向后端发送字符串,并从后端向前端发送json文件。

1 个答案:

答案 0 :(得分:1)

浏览器的本地fetch()函数可以为您做到这一点。

像这样使用它:

fetch('http://your.server.domain/api/endpoint', {
  method: 'GET',
  headers: {"Content-Type": "application/json"},
}).then((res) => {
  return res.json();
}).then((json) => {
  // this is your json data from your server
  console.log(json);
});