最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Include htm template into another one on Angular 6 - Stack Overflow

programmeradmin2浏览0评论

Actually, i have one HTML file which contains all the code. I want to split this one on multiple files and to include them.

How can i do this?

Thanks a lot.

Actually, i have one HTML file which contains all the code. I want to split this one on multiple files and to include them.

How can i do this?

Thanks a lot.

Share Improve this question asked Nov 6, 2018 at 8:34 ims16ims16 1211 silver badge9 bronze badges 1
  • I would suggest you to read about ponents: angular.io/guide/architecture-ponents – JeroenE Commented Nov 6, 2018 at 8:37
Add a ment  | 

3 Answers 3

Reset to default 6

Let's say you have this html:

<div class="ponentA">ComponentA</div>
<div class="ponentB">ComponentB</div>

and this code is into the `AppComponent. You can split this two div into two ponent:

ComponentA.ts

@Component({
  selector: 'ponentA',
  templateUrl: 'ponentA.ponent.html',
  styleUrls: ['ponentA.ponent.scss'],

)}
export class ComponentA {

}

ComponentA.html

<div class="ponentA">ComponentA</div>

ComponentB.ts

@Component({
  selector: 'ponentB',
  templateUrl: 'ponentB.ponent.html',
  styleUrls: ['ponentB.ponent.scss'],

)}
export class ComponentB {

}

ComponentB.html

<div class="ponentB">ComponentB</div>

then into your AppComponent.html :

<ponentA></ponentA>
<ponentB></ponentB>
  • You need to write the second Component - Angular Components
  • Add this ponent to your App.module.ts - Angular Modules
  • If you have business logic you can also provide this by Services - Angular Services

In addition to answers above, don't forget to include

import { Component } from '@angular/core';

in your both ponents ts file.

发布评论

评论列表(0)

  1. 暂无评论