2017-09-18 70 views
0

我有我的角4個組件文件結構像下面的層級 -角4 - 包括像SASS HTML文件_partial

-----add-form 
-------_textfield.html 
-------_teaxarea.html 
-------add-form.component.ts 
-------add-form.component.html 
-------add-form.directives.ts 

我一直在努力,包括內add-form.component.html像的SASSinclude() _partials _textfield.html_textarea.html文件PHP。

我試圖用ng-iinclude與下面的代碼 -

<div ng-include="'_textfield.html'"></div>

但最終輸出本身。包含這些文件的最佳方式是什麼?

回答

0

角度僅適用於組件。沒有像部分或包含的東西。

遵循層次結構的唯一方法是爲您的textfield.html定義一個組件併爲您的textarea.html定義一個組件。

然後,你可以使用這個組件在add-form.component

+0

我在同樣的嘗試,但不能做到這一點 - https://stackoverflow.com/questions/45998572/angular-4-component-selector-不工作的功能於定製指令 – user3384985