admin管理员组文章数量:1345179
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
3 Answers
Reset to default 6Let'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.
本文标签: javascriptInclude htm template into another one on Angular 6Stack Overflow
版权声明:本文标题:javascript - Include htm template into another one on Angular 6 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743753803a2533133.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论