일부 서비스에서 페이지 일부를 가져옵니다. 그 각도 표현이나 라우터 직원이 동적 컨텐츠로 작동하려면 어떻게해야합니까?동적 각도 2 표현식이 뷰에 바인딩됩니다.
Controller.ts
variable = 'some text';
dynamicContent ='
{{variable}}
Or
<a [routerLink]="contact"]></a>';
View.html는
<div>
{{dynamicContent}}//plain text
<div [innerHtml]="dynamicContent"></div> //html without angular expressions
</div>
그래서 innerHTML을 가까이입니다. HTML을 만들 수는 있지만 앵귤러 2 표현을 이해할 수는 없습니다. ng-dynamic 모듈을 찾았지만 html로만 이해할 수도 있습니다. 가장 좋은 솔루션 atm은 html 아울렛으로 일부 스택 질문에서 발견되었습니다. 하지만 AOT를 지원하지 않습니다 ...
이것을 확인하십시오. http://stackoverflow.com/questions/34784778/equivalent-of-compile-in-ang ular-2 – BotanMan