最佳答案
我正在开发一个角4应用程序,我想应用一些全球风格。在 角位置的教程之后,我已经在我的应用程序的根目录中创建了一个“ styles.css”文件,我在我的应用程序的 index.html 中引用这个样式表:
<link rel="stylesheet" type="text/css" href="styles.css">
角度应用程序编译成功:
$ ng serve
** NG Live Development Server is listening on localhost:4200, open your browser on http://localhost:4200 **
[...]
webpack: Compiled successfully.
但是当我在 Chromium 浏览器中访问 http://localhost:4200时,控制台显示一个错误
GET http://localhost:4200/styles.css
在 Firefox 浏览器中,这个错误更加明显:
GET
http://localhost:4200/styles.css [HTTP/1.1 404 Not Found 15ms]
The resource from "http://localhost:4200/styles.css" was blocked due to MIME type mismatch (X-Content-Type-Options: nosniff).
这两个文件 index.html 和 styles.css 都位于我的 angle 应用程序的根目录中。 我曾试图获得 关于这个问题的更多信息:
nosniff
Blocks a request if the requested type is
"style" and the MIME type is not "text/css", or
"script" and the MIME type is not a JavaScript MIME type.
但是我不明白为什么它会阻塞请求,因为我在引用样式表时已经指定了 type="text/css"
。