找不到Angular 4 styleUrls文件

时间:2017-06-20 01:22:54

标签: javascript angular

我正在使用Angular 4.1.3和Rails 5.1

我想将styleUrls用于我的组件,但是会出错。

这是错误。

zone.js?4c9b:643 Unhandled Promise rejection: Failed to load app.component.css ; Zone: <root> ; Task: Promise.then ; Value: Failed to load app.component.css undefined

这是我的组件。

import { Component } from '@angular/core';
import template from './app.component.html'

@Component({
  selector: 'app-root',
  template: template,
  styleUrls: ['./app.component.css']
})

export class AppComponent {
  name = '';
}

这是我的文件结构

├── app
        app.component.css
|   ├── app.component.html
|   └── app.component.ts
|   └── app.module.ts

1 个答案:

答案 0 :(得分:0)

试试这个,

@Component({
  moduleId: module.id,
  selector: 'app-root',
  template: template,
  styleUrls: ['app.component.css']
})