Спасибо, Сахит Курапати, за ваш ответ.
Я сделал это вот так. Но у меня возникла ошибка на странице URL http://localhost:5000/send
.
Внутренняя ошибка сервера: сервер обнаружил внутреннюю ошибку и не смог выполнить ваш запрос. Либо сервер перегружен, либо в приложении есть ошибка.
Вот код flask:
from flask import Flask, request
app = Flask(__name__)
@app.route('/data')
def send_data():
return {"data": "monument"}
@app.route('/send', methods=['POST', 'GET'])
def get_data():
if request.method == 'POST':
return "Data received in server successfully!"
if __name__ == '__main__':
app.debug = True
app.run()
А вот собственный код реакции:
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
const serverUrl = "http://10.0.2.2:5000/data"
class Test extends React.Component {
constructor(props) {
super(props);
this.state = {
information: null,
};
}
_sendData() {
fetch("http://10.0.2.2:5000/send", {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: "John Doe",
password: "john123"
})
})
.then((response) => {
console.log(response);
console.log("ok");
//do something here with the response from the flask server
});
}
componentDidMount() {
fetch(serverUrl)
.then((response) => response.json())
.then((data) => {
console.log(data);
this.setState({
information: data.data,
});
this._sendData();
})
.catch((error) => console.log(error))
}
render() {
return (
<View style={styles.container}>
<Text>{this.state.information}</Text>
</View>
)
}
}
...