嘿,我试图使用axios库请求,这是我到目前为止所拥有的-
axios
axios.get("https://example.com").then(console.log)
但每次Maximum number of redirects exceeded如何通过增加重定向限制来修复它?
Maximum number of redirects exceeded
igetnqfo1#
你可以在请求配置中设置maxRedirects选项,通过传递第二个对象参数,默认设置为21。你需要确保你的重定向不会导致无限循环。您可以在axios文档中找到其他配置选项:
maxRedirects
axios.get("https://example.com", {maxRedirects: 21}).then(console.log);
1条答案
按热度按时间igetnqfo1#
你可以在请求配置中设置
maxRedirects
选项,通过传递第二个对象参数,默认设置为21。你需要确保你的重定向不会导致无限循环。您可以在axios文档中找到其他配置选项: