“JavaScript Fetch API” Ответ

Fetch API JavaScript

fetch('http://example.com/songs')
	.then(response => response.json())
	.then(data => console.log(data))
	.catch(err => console.error(err));
Bewildered Booby

JavaScript Fetch Json

fetch('./yourjson.json')
  .then((response) => response.json())
  .then((data) => {
  	console.log(data);
  })
Lioruby

Fetch JS

const data = { username: 'example' };

fetch('https://example.com/profile', {
  method: 'POST', // or 'PUT'
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify(data),
})
.then(response => response.json())
.then(data => {
  console.log('Success:', data);
})
.catch((error) => {
  console.error('Error:', error);
});
Lively Ladybird

Fetch API JavaScript

fetch('http://example.com/movies.json')
  .then((response) => {
    return response.json();
  })
  .then((myJson) => {
    console.log(myJson);
  });
Gleaming Gemsbok

JavaScript Fetch API

console.log("Hello world")
Lively Lynx

JavaScript Fetch API

fetch(file)
.then(x => x.text())
.then(y => myDisplay(y));
naly moslih

Ответы похожие на “JavaScript Fetch API”

Вопросы похожие на “JavaScript Fetch API”

Больше похожих ответов на “JavaScript Fetch API” по JavaScript

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

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