我在Angular 7项目中集成了html模板,但无法正常工作
我将模板文件添加到assets / template / ..下,并将导入项添加到angular.json中,如:
我编辑了html代码:
(例如src =“ / assets / template / img / slider / 1.jpg” alt =“主滑块” title =“#htmlcaption1”)
我在app.root标记下的index.html中添加了html代码,并且一切正常
但是当我将其更改为app.component.html时:
而且我的控制台没有任何错误
答案 0 :(得分:0)
我通常不在angular.json中使用样式数组, 相反,我将所有全局样式导入为.css样式,因为默认情况下将其设置为angular.json样式数组。
/* You can add global styles to this file, and also import other style files */
@import "assets/quote.css";
@import "https://fonts.googleapis.com/css?family=IBM+Plex+Sans+Condensed:200|Josefin+Sans:300|Julius+Sans+One|Merriweather+Sans:400|Overpass:400|Quicksand"
答案 1 :(得分:0)
只需在encapsulation: ViewEncapsulation.None
中添加@component
,如下所述。
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
encapsulation: ViewEncapsulation.None
})