JavaScriptでのfetchを使ってAPIを叩く方法

Javascriptを使ってWebAPIを叩く方法。開発現場でよく使われるfetchを使います。 | How to hit WebAPI using Javascript

HTML <button id=”addBtn”><h3>Name</h3></button>
<ol id=”lists”>

</ol>
Javascript const button = document.getElementById(“addBtn”)
const lists = document.getElementById(“lists”)
button.addEventListener(“click”, async function(){
const res = await fetch(“https://jsonplaceholder.typicode.com/users”)
const users = await res.json();

users.forEach(function(user){
const list = document.createElement(“li”)
list.innerText = user.name
lists.appendChild(list)
})
});
こちらが今回学ばせてもらったしまぶーさんの動画です | Here is a video of Mr. Shimabu who learned this time

もっと深く学びたい人にはこちらもどうぞ。| For those who want to learn more deeply, this is also recommended.

キャリアアップに必要なスキルを取得しよう。| Get the skills you need to advance your career.

オンラインで受講ができるスクールですので、全国どこからでも。 | Since it is a school where you can take classes online, you can take it from anywhere in the country.

ぺージの先頭に戻る(Return to top of page)




“JavaScriptでのfetchを使ってAPIを叩く方法” への1件の返信

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です