【发布时间】:2017-02-09 14:49:32
【问题描述】:
我目前正在开发一个使用引导程序的网站,但每当我在我的用户帐户中加载该网站时,我都会收到这些错误(指引导程序 CDN)
野生动物园
[Error] Failed to load resource: The operation couldn’t be completed. Connection reset by peer
[Error] Failed to load resource: The operation couldn’t be completed. Connection reset by peer
[Error] Failed to load resource: The operation couldn’t be completed. Connection reset by peer
铬
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css Failed to load resource: net::ERR_CONNECTION_CLOSED
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css Failed to load resource: net::ERR_CONNECTION_CLOSED
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js Failed to load resource: net::ERR_CONNECTION_CLOSED
火狐
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css. (Reason: CORS request failed). <unknown>
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css. (Reason: CORS request failed). <unknown>
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js. (Reason: CORS request failed). <unknown>
这仅发生在我的用户帐户上并且已经发生了一段时间,直到现在我才寻求帮助!
我也无法加载 getbootstrap.com,加载栏只是挂起。 (这也发生在其他网站上)
编辑: 这是在我的标题中
<link rel="stylesheet"href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
【问题讨论】: