TypeScript中的Http请求

TypeScript中的Http请求,第1张

TypeScript中的Http请求

尽管

request-promise-native
可能工作得很好,但Axios是在Typescript中使用的更好的替代方法。它带有自己的类型定义,总体上对其他程序包的依赖性较小。使用它的API很像Adrian提供的答案,但是有一些细微的差异。

const url: string = 'your-url.example';try {    const response = await axios.get(yourUrl);} catch (exception) {    process.stderr.write(`ERROR received from ${url}: ${exception}n`);}

显然,如果您希望客户端处理异常,则可以省去try / catch语句



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4884317.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-11
下一篇 2022-11-11

发表评论

登录后才能评论

评论列表(0条)

保存