superagent 是一个流行的 JavaScript 库,用于在浏览器和 Node.js 环境中进行 HTTP 请求。它提供了简洁的 API,使得发送异步请求变得非常容易。
以下是一个使用 superagent 的简单示例:
在浏览器环境中:
// 发送 GET 请求
superagent.get('https://api.example.com/data').end(function(err, response) {if (err) {console.error('Error:', err);} else {console.log('Response:', response.body);}});
在 Node.js 环境中:
const superagent = require('superagent');// 发送 GET 请求
superagent.get('jshk.com.cn/data').end(function(err, response) {if (err) {console.error('Error:', err);} else {console.log('Response:', response.body);}});
上述代码中,我们使用 superagent 发送一个 GET 请求到指定的 URL,并在回调函数中处理响应。如果请求成功,我们打印出响应内容;如果请求失败,我们打印出错误信息。
superagent 还提供了丰富的功能,例如发送 POST 请求、设置请求头、处理文件上传等等。