gpt4 book ai didi

javascript - webpack dev server 混合内容错误

转载 作者:搜寻专家 更新时间:2023-10-31 22:51:43 24 4
gpt4 key购买 nike

我使用 webpack-dev-server 在 Cloud9 上运行基于 React 的网站,因此它通过 https 提供内容。问题是,当我尝试向外部 http 链接发出一些 ajax(网络)请求时,它会出现以下错误:

Mixed Content: The page at 'https://...' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://...'. This request has been blocked; the content must be served over HTTPS.

webpack配置有什么技巧可以从http请求数据吗?

最佳答案

可能没有webpack-dev-server的解决方案,但是下面的对于nodejs还是不错的

app.use(function(req, res, next) {
if (req.headers['x-forwarded-proto'] == 'https') {
res.redirect('http://' + req.hostname + req.url);
} else {
next();
}
});

关于javascript - webpack dev server 混合内容错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42227073/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com