如何在Angular2中手动插入模板?

时间:2016-03-18 04:14:25

标签: javascript html angular angular2-template

我需要动态地注入自定义html组件的实例,并且能够动态地“$ digest”模板非常有用。我怎么能在angular2中这样做?现在我有这个:

let html = `<custom-element>Content</custom-element>`;
let template = document.createElement('template');
template.innerHTML = html;
document.getElementById('app')
    .appendChild(template.content.firstChild)

但这只是插入一个普通的'ol元素。

http://puu.sh/nKBz8/89825fbb78.png

以下是一名侦察员,展示了我尝试这样做的方式:

http://plnkr.co/edit/JqLWpD?p=preview

0 个答案:

没有答案