我将angular(2.1.2)和angular-cli版本升级到最新版本,我得到的每个组件都有以下错误:
ERROR in ./src/app/members/view-news/view-news.component.ts
Module not found: Error: Can't resolve 'view-news.component.css' in 'c:\xampp\htdocs\myapp\src\app\members\view-news'
@ ./src/app/members/view-news/view-news.component.ts 74:21-55
@ ./src/app/app.module.ts
@ ./src/app/index.ts
@ ./src/main.ts
@ multi main
虽然文件view-news.component.css
存在于view-news.component.ts
的同一文件夹中,但在以前的版本中有效。怎么了?
答案 0 :(得分:6)
您是否尝试{{1}}作为路径?
答案 1 :(得分:0)
请务必将评论标记从<dom-element>
更改为&#39; test.html&#39;如果你将它包围在test.html
中,它将失败。
答案 2 :(得分:0)
这是我的解决方案
就我而言
路径就像这样的“ node_modules / jquery / dist / jquery.min.js”,
我已通过
更正了它”。/node_modules / jquery / dist / jquery.min.js”,
实际代码
"styles": [
"./node_modules/bootstrap/dist/css/bootstrap.min.css"
],
"scripts": [
"./node_modules/jquery/dist/jquery.min.js",
"./node_modules/bootstrap/dist/js/bootstrap.min.js"
],