fetch agent
时间: 2023-12-08 18:38:37 浏览: 287
agent
fetch agent是一种用于在Node.js中设置代理的方法。在使用fetch进行网络请求时,可以通过设置agent选项来指定代理。以下是一个使用fetch agent的例子:
```javascript
const fetch = require('node-fetch');
const ProxyAgent = require('simple-proxy-agent');
fetch('https://example.com', {
agent: new ProxyAgent('http://0.0.0.0:8080', {
// Options, with ...
})
})
.then(response => {
// handle response
})
.catch(error => {
// handle error
});
```
在上面的例子中,我们使用了node-fetch和simple-proxy-agent两个库。我们创建了一个ProxyAgent实例,并将其作为fetch请求的agent选项传递。这样,fetch请求就会通过指定的代理进行发送。
阅读全文