截至今天上午,我的一个应用程序正在页面加载上引发错误。打开开发人员工具后,出现错误消息。这是示例:
None of the “sha384” hashes in the integrity attribute match the content of the subresource.
我尝试清除浏览器历史记录,然后重新加载页面,但出现相同的错误。然后,我尝试使用其他浏览器,但出现了相同的问题。这是我的代码示例:
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<div class="container">
<h1 class="text-center">My WebPage</h1>
</div>
<script language="javascript" type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script language="javascript" type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
昨天一切都很好,今天早上我遇到了问题。我想知道是否可以通过下载jQuery和Bootstrap并从本地服务器加载文件来解决此问题?我听说CDN是首选,但目前还不确定。