“AngularJS, wie man eine Antwort von einer Postanfrage erhält” Code-Antworten

AngularJs machen Postanfrage

var url = 'posturl', data = 'parameters',config='contenttype';

$http.post(url, data, config).then(function (response) {

// This function handles success

}, function (response) {

// this function handles error

});
Friendly Hawk

AngularJS, wie man eine Antwort von einer Postanfrage erhält

const res = {
  "status": true,
  "data": {
    "cServico": {
      "Codigo": "04510",
      "Valor": "65,00",
      "PrazoEntrega": "6",
      "ValorSemAdicionais": "65,00",
      "ValorMaoPropria": "0,00",
      "ValorAvisoRecebimento": "0,00",
      "ValorValorDeclarado": "0,00",
      "EntregaDomiciliar": "S",
      "EntregaSabado": "N",
      "obsFim": {},
      "Erro": "0",
      "MsgErro": {},
    },
  },
};
console.log(res.data.cServico.Valor);
SAMER SAEID

Ähnliche Antworten wie “AngularJS, wie man eine Antwort von einer Postanfrage erhält”

Fragen ähnlich wie “AngularJS, wie man eine Antwort von einer Postanfrage erhält”

Weitere verwandte Antworten zu “AngularJS, wie man eine Antwort von einer Postanfrage erhält” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen