...
Параметр | Тип даних | Опис |
---|---|---|
message | String | Опис результату проведення операції |
Приклад коду на JavaScript + jQuery 2.2.4
Code Block | ||
---|---|---|
| ||
$.ajax({
url: "https://local.cipher.kiev.ua:9090/api/v1/status",
type: "GET",
dataType: "json",
cache: false
}).done(function (jsonResponse, textStatus, xhr) {
message = jsonResponse.message;
}).fail(function (xhr) {
try {
var jsonResponse = JSON.parse(xhr.responseText);
message = jsonResponse.message;
} catch (e) {
message = (xhr.responseText == undefined) ? "Помилка при отриманні стану сервісу." : xhr.responseText;
}
}) |