我正在使用Flask框架为后端和前端React创建一个Web应用程序。我想使用http
请求将两者连接起来,但是我不知道从哪里开始。我在前端和后端都使用 PyCharm IDE 。
我看过react-http-request
库,但我不理解。
我希望能够从前端向后端发送字符串,并从后端向前端发送json
文件。
答案 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);
});