“Axios Post PHP” Code-Antworten

Axios senden Post an PHP

var params = new URLSearchParams();
params.append('param1', 'value1');
params.append('param2', 'value2');
axios.post('/foo', params); 
feddynventor

Senden Sie die Axios -Anfrage an PHP

<?php  
  $rp = json_decode(file_get_contents('php://input'), true);
JoJo

Axios Post PHP

// JS
axios.post(url, JSON.stringify({
name: "this.name",
email: "this.psswrd"
}))
  
// PHP
$_POST = json_decode(array_keys($_POST)[0], true);
Puzzled Puffin

Ähnliche Antworten wie “Axios Post PHP”

Fragen ähnlich wie “Axios Post PHP”

Weitere verwandte Antworten zu “Axios Post PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen