有没有办法将独立的html文件包含到x.component.html中?

时间:2017-12-08 18:56:22

标签: angular

说这是你的app.component.html文件

<div id='blah'>
..  100 lines here...
</div>

<div id='blahblah'>
.. another 500 here
</div>

<div id='blahblahblah'>
.. another 400 and so on... 
</div>

我知道这很荒谬,但我只是想为这个问题奠定基础。

显然,这是一个很难导航的长.html。将事物分解成更易于管理的块并让Angular在运行时(甚至在转换时间)带来相关部分会很好,即使这样也非常受欢迎!

以下是问题: 在Angular中是否有一种方法可以将这三个div放在他们自己独立的html文件中(例如blah.html blahblah.html&amp; blahblahblah.html),然后以某种方式告诉angular包含它们以便它们一样好嵌入app.component.html?

从php世界,你会做像include('blah.html')这样的事情。我知道在HTML中,我们没有这样的东西,但对Angular不确定?看到Angular的作用,我想,这可能也得到了解决。

0 个答案:

没有答案