Example getUserList() { return axios.get('/users') .then(response => response.data) .catch(error => { if (error.response) { console.log(error.response); } ...
確定! 回上一頁