github 项目页面资源解释为脚本但以 MIME 类型传输 text/htm
github project pages Resource interpreted as Script but transferred with MIME type text/htm
出于某种原因,我无法让我的 Github 项目页面加载我的 javascript。我在控制台中得到以下信息:
Resource interpreted as Script but transferred with MIME type text/html: "http://siddhion.github.io/scripts/cdf6190d.scripts.js".
siddhion.github.io/:109
Resource interpreted as Script but transferred with MIME type text/html: "http://siddhion.github.io/scripts/angular.min.js".
angular.min.js:1 Uncaught SyntaxError: Unexpected token <
cdf6190d.scripts.js:3 Uncaught ReferenceError: angular is not defined
cdf6190d.scripts.js:1 Uncaught SyntaxError: Unexpected token <
这是我的 Github 项目页面
http://siddhion.github.io/maxmythic/
和我的 gh-page 存储库
https://github.com/siddhion/maxmythic/tree/gh-pages
知道出了什么问题吗?
您期待 JavaScript 代码作为来自
的响应
/scripts/cdf6190d.scripts.js
/scripts/angular.min.js
但是您得到的是 404 html 网页。
您在用于脚本的 URL 中缺少您的项目名称。
gh-pages 的 URL 格式是:
http://{ownername(用户或组织)}.github.io/{project_name}
因此您的 javascript 文件可以通过以下方式访问 URL
http://siddhion.github.io/maxmythic/scripts/cdf6190d.scripts.js
出于某种原因,我无法让我的 Github 项目页面加载我的 javascript。我在控制台中得到以下信息:
Resource interpreted as Script but transferred with MIME type text/html: "http://siddhion.github.io/scripts/cdf6190d.scripts.js".
siddhion.github.io/:109
Resource interpreted as Script but transferred with MIME type text/html: "http://siddhion.github.io/scripts/angular.min.js".
angular.min.js:1 Uncaught SyntaxError: Unexpected token <
cdf6190d.scripts.js:3 Uncaught ReferenceError: angular is not defined
cdf6190d.scripts.js:1 Uncaught SyntaxError: Unexpected token <
这是我的 Github 项目页面
http://siddhion.github.io/maxmythic/
和我的 gh-page 存储库
https://github.com/siddhion/maxmythic/tree/gh-pages
知道出了什么问题吗?
您期待 JavaScript 代码作为来自
的响应/scripts/cdf6190d.scripts.js
/scripts/angular.min.js
但是您得到的是 404 html 网页。
您在用于脚本的 URL 中缺少您的项目名称。 gh-pages 的 URL 格式是:
http://{ownername(用户或组织)}.github.io/{project_name}
因此您的 javascript 文件可以通过以下方式访问 URL http://siddhion.github.io/maxmythic/scripts/cdf6190d.scripts.js