AngularJs net::ERR_ABORTED github 页上的 404
AngularJs net::ERR_ABORTED 404 on github pages
我正在做一个项目,需要通过 github 页面提交,但是,当我上传我的项目时,我的一些 JS 文件没有加载并且控制台显示 Get net::ERR_ABORTED404.
我有我的 JS linked <script src="src/menuList/CategoriesController.js"</script>
这是按摩师
enter image description here
这是我的存储库 link enter link description here
这个 link 是它自己的页面 enter link description here
如果有人能提供帮助,我将不胜感激
提前致谢
当您有大写目录时,通常会发生这种情况。例如,将 itemsController.js 的当前 link 设为 https://rashad-harun.github.io/Module_4_solution/src/menulist/itemsController.js, this gives you 404 since the menuList
directory is referred to as menulist
. If you change that link to https://rashad-harun.github.io/Module_4_solution/src/menuList/itemsController.js,其中我刚刚将 menulist
单词的 l
字母大写。
所以我的建议是将子目录名称设为小写。例如:
- 在您的 GitHub 存储库中将
menuList
目录重命名为 menulist
。
我正在做一个项目,需要通过 github 页面提交,但是,当我上传我的项目时,我的一些 JS 文件没有加载并且控制台显示 Get net::ERR_ABORTED404.
我有我的 JS linked <script src="src/menuList/CategoriesController.js"</script>
这是按摩师
enter image description here
这是我的存储库 link enter link description here
这个 link 是它自己的页面 enter link description here
如果有人能提供帮助,我将不胜感激 提前致谢
当您有大写目录时,通常会发生这种情况。例如,将 itemsController.js 的当前 link 设为 https://rashad-harun.github.io/Module_4_solution/src/menulist/itemsController.js, this gives you 404 since the menuList
directory is referred to as menulist
. If you change that link to https://rashad-harun.github.io/Module_4_solution/src/menuList/itemsController.js,其中我刚刚将 menulist
单词的 l
字母大写。
所以我的建议是将子目录名称设为小写。例如:
- 在您的 GitHub 存储库中将
menuList
目录重命名为menulist
。