web-dev-qa-db-fra.com

Comment puis-je passer POST paramètres dans la requête de récupération? - Réagir natif

Ceci est mon code:

componentWillMount() {
  fetch("http://10.4.5.114/localservice/webservice/rest/server.php", {
    method: 'POST',
    body: JSON.stringify({
      wstoken: 'any_token',
      wsfunction: 'any_function',
      moodlewsrestformat: 'json',
      username: 'user',
      password: 'pass',
    })
  })
  .then((response) => response.text())
  .then((responseText) => {
    alert(responseText);
  })
  .catch((error) => {
    console.error(error);
  });
}

Dans le navigateur, cette demande renvoie un jeton, mais dans mon application Android native, réactive, renvoie une erreur XML. 

6
Isaac Gomes

Ce qui a fonctionné pour moi

fetch("http://10.4.5.114/localservice/webservice/rest/server.php", {
  method: 'POST',
  headers: new Headers({
             'Content-Type': 'application/x-www-form-urlencoded', // <-- Specifying the Content-Type
    }),
  body: "param1=value1&param2=value2" // <-- Post parameters
})
.then((response) => response.text())
.then((responseText) => {
  alert(responseText);
})
.catch((error) => {
    console.error(error);
});
20
Jeferson Macedo

Essayez d'ajouter un en-tête dans la demande de publication.

       headers: {
         'Accept': 'application/json',
         'Content-Type': 'application/json',

       },
       body: JSON.stringify({
         wstoken: 'any_token',
         wsfunction: 'any_function',
         moodlewsrestformat: 'json',
         username: 'user',
         password: 'pass',
      })
4
Santosh Sharma

Avez-vous essayé de spécifier le type de contenu?

https://facebook.github.io/react-native/docs/network.html

1
user1736525