Ich versuche, das Formular mit Vorname, Nachname, E-Mail, Passwort und Passwortbestätigung mit reactive-native fetch api zu posten.Wie man ein Formular mit fetch in reactive native?
fetch('http://localhost:3000/auth', {
method: 'post',
body: JSON.stringify({
config_name: 'default',
first_name: this.state.first_name,
last_name: this.state.last_name,
email: this.state.email,
password: this.state.password,
password_confirmation: this.state.password_confirmation,
})
})
Output in Rails-Konsole
Parameters: {"{\"config_name\":\"default\",\"first_name\":\"Piyush\",\"last_name\":\"Chauhan\",\"email\":\"[email protected]\",\"password\":\"diehard4\",\"password_confirmation\":\"diehard4\"}"=>"[FILTERED]"}
Unpermitted parameter: {"config_name":"default","first_name":"Piyush","last_name":"Chauhan","email":"[email protected]","password":"diehard4","password_confirmation":"diehard4"}
So sein Posting der gesamte Wert als String und Schienen Parsen der Zeichenfolge als Variable. Ich möchte das "{" aus der JSON-Antwort entfernen. Wie es geht ?
Bitte geben Detail aussehen würde und mehr erklären – M98