async getUserAsync(name) { try{ let response = await axios({ method: 'get', url: `https://api.github.com/users/${name}`, json: true }); return response; } ...
確定! 回上一頁