data
, выводится [object Promise]
, а не текст из json
?res.name
?var data = fetch("ajax.json").then(function(res){
return res.json();
}).then(function(res) {
return res.name;
}).catch();
document.write(data);
(async function() {
let data = await fetch("ajax.json").then(res => res.json());
document.write(data);
}());