WASM/DotNet Integrity属性对于Github页面上的Blazor应用程序无效

wasm/dotnet Integrity attribute invalid for my Blazor app on Github pages(WASM/DotNet Integrity属性对于Github页面上的Blazor应用程序无效)
本文介绍了WASM/DotNet Integrity属性对于Github页面上的Blazor应用程序无效的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

See the error on my website here

我在我的Jekyll站点中嵌入了一个Blazor应用程序。它在本地运行得很好,但是当我在GitHub页面上发布它时,我收到以下错误:

Failed to find a valid digest in the 'integrity' attribute for resource 'https://chrisevans9629.github.io/blazor/xt/_framework/wasm/dotnet.3.2.0-rc1.20222.2.js' with computed SHA-256 integrity 'yVt8FYsTQDifOGsifIkmEXwe+7ML0jZ1dMi2xluiDXQ='. The resource has been blocked.

这是我认为Blazor在页面运行时生成的内容。我的页面在启动Blazor时是这样的:

<script src="js/index.js"></script>
<app>Loading...</app>
Built with <3 using Blazor
<script src="_framework/blazor.webassembly.js"></script>

GitHub页面上的页面外观如下:


<script src="js/index.js"></script>

<app>Loading...</app>
<p>Built with &lt;3 using Blazor
<script src="_framework/blazor.webassembly.js"></script></p>        

<script type="text/javascript">var Module; window.__wasmmodulecallback__(); delete window.__wasmmodulecallback__;</script><script src="_framework/wasm/dotnet.3.2.0-rc1.20222.2.js" defer="" integrity="sha256-iZCHkFXJWYNxCUFwhj+4oqR4fkEJc5YGjfTTvdIuX84=" crossorigin="anonymous"></script></body>

为什么会发生此错误,我如何修复此错误?我考虑过创建一个删除完整性属性的脚本,但我认为这不是一个好的解决方案。

推荐答案

我找到答案here

原因

因为我使用GitHub页面来托管我的Blazor应用程序,所以它使用git来推送代码。默认情况下,Git在提交代码时会尝试规格化行尾,这会导致blazor应用程序的完整性因文件更改而失败。

解决方案

要解决此问题,我向我的blazor文件夹添加了一个内容为* binary的.gittributes文件。

这告诉git将所有文件视为二进制文件,因此不规范化行尾。在我这样做之后,我不得不删除我的Blazor应用程序中的_framework文件夹并重新构建它。完成此操作后,Blazor应用程序正常工作。

这篇关于WASM/DotNet Integrity属性对于Github页面上的Blazor应用程序无效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)