“фальшивый json post api” Ответ

фиктивная API JSON

var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
    console.log(xhr.responseText);
};
xhr.send();
				

фальшивый json post api

var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
    console.log(xhr.responseText);
};
xhr.send();
	
Worried Wombat

Ответы похожие на “фальшивый json post api”

Вопросы похожие на “фальшивый json post api”

Больше похожих ответов на “фальшивый json post api” по JavaScript

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

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