[Javascript]axios使い方

axios使い方

axiosとは、HTTP通信(データの更新・取得)を簡単に行うことができる、JavaScriptのライブラリです。

APIを提供するクラウドサービスに対して、データを送受信することができます。

例として、ライブラリは以下を使っています。

<script src=”https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js”></script>

            try {
                let rt = axios.post("http://localhost:3000/test", {},{
                    headers: {
                        "key": "testkey"
                    }
                });
                tk = rt.data.tk;
            }catch(error){
                console.log(error);
            }

投稿者: kinkun

保有資格 Salesforce Certified Platform App Builder T Salesforce Certified Platform Developer I Salesforce Certified Platform Developer II Salesforce Certified Administrator

コメントを残す

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