今天我們來學習如何使用axios獲取JSON中的數據,首先我們需要安裝axios,使用npm安裝即可:
npm install axios --save接下來我們需要使用axios中的get方法來獲取JSON數據,如下所示:
axios.get('url/to/JSON/data') .then(function (response) { // handle success console.log(response.data); }) .catch(function (error) { // handle error console.log(error); }) .then(function () { // always executed });此處的'url/to/JSON/data'需要根據自己獲取數據的鏈接來填寫。我們可以在.then()方法中獲取到已經獲取到的JSON數據,并對其進行處理,也可以在.catch()方法中處理錯誤信息。 以上就是使用axios獲取JSON中的數據的方法,希望對大家有所幫助。
上一篇golang映射vue
下一篇css3箭頭導航欄