(async function() {
var result = await $.post('api/index.php', { raz: 'Привет, мир!' } );
console.log('Ответ сервера:', result);
})();
console.log
$_POST
<?php
header('Content-Type: text/plain; charset=UTF-8');
$json = json_encode($_POST, JSON_UNESCAPED_UNICODE);
file_put_contents('POST.json', $json);
echo 'Данные получены и записаны в файл POST.json -> смотри его.';
new Date('2022-11-10T08:43:28.046Z').getTime()
window.addEventListener('load', async () => {
var data1 = await $.getJSON('https://json файл разные');
console.log('Получены данные:', data1);
$(".mypanel").html(data1.hls);
var A = ',{"get":"';
var B = '",';
var C = '"img":"';
var D = '"}';
var master = [A,data1.hls,B,C,D];
var data2 = await $.post('zapros2.php', {name1: master});
console.log('Получены еще данные:', data2);
});
var input = document.createElement('input');
input.setAttribute('type', 'file');
input.onchange = function() {
var file = input.files[0];
var reader = new FileReader();
reader.readAsText(file);
reader.onload = function() {
txt = reader.result;
console.log(txt);
};
}
input.click();
txt
window.localStorage.set(window.location.href, formData);
window.location.pathname
// Записать объект с данными в память:
data = {
'test': 123
};
localStorage.setItem(location.pathname, JSON.stringify(data));
// Извлечь объект с данными из памяти:
data = JSON.parse(localStorage.getItem(location.pathname));
console.log(data);
function loadPage(argUrl, argType, argParams) {
loadingBar(1);
if (argType == 1) {
argType = "POST";
} else {
argType = "GET";
// Store the url to the last page accessed
if (argUrl != window.location) {
window.history.pushState({path: argUrl}, '', argUrl);
}
}
// Request the page
$.ajax({
url: argUrl,
type: argType,
data: argParams,
success: function (data) {
// Парсим ответ:
var result = $(new DOMParser().parseFromString(data, 'text/html'));
// Скролл вверх:
$(document).scrollTop(0);
// Обновляем титул:
document.title = result.find('title').html();
// Обновляем чисто содержимое блока body:
$('body').html(result.find('body').html());
// Reload functions
reload();
loadingBar(0);
}
});
}