“Угловой http post пример” Ответ

AngularJs делайте запрос после

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

Угловой http post пример

post(url: string, 
     body: any, 
     options: { 
        headers?: HttpHeaders | { [header: string]: string | string[]; }; 
        observe?: "body|events|response|"; 
        params?: HttpParams | { [param: string]: string | string[]; }; 
        reportProgress?: boolean; 
        responseType: "arraybuffer|json|blob|text"; 
        withCredentials?: boolean; 
     }
): Observable
Tiny Coders

angularjs, как получить ответ от запроса после

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

Ответы похожие на “Угловой http post пример”

Вопросы похожие на “Угловой http post пример”

Больше похожих ответов на “Угловой http post пример” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования