我目前被迫评论或取消评论我的请求对象中的一行,这取决于我的应用程序当前运行的是我的本地系统还是生产服务器。
我已经尝试使用 bool 变量来解决这个问题,但它不起作用。这是我的代码
const dev = true;
const devProxy = dev
? {agent: new HttpsProxyAgent("http://proxy:80")}
: {};
myFunc: async access_token => {
const response = await fetch(
URL,
{
// agent: new HttpsProxyAgent("http://proxy:89´0"),
devProxy,
method: "GET",
headers: {
Accept: "application/json",
"Content-Type": "application/json",
Authorization: `Bearer ${access_token.access_token}`
}
}
);
if (response.ok) {
return response.json();
}
throw new Error(
"bla" +
response.status +
" StatusText: " +
response.statusText
);
},
该错误表示未使用代理。
我怎样才能正确地做到这一点?