我的意思是我已经在角度2中有一个指令,它的一个输入是字符串或html字符串,如:
<div [my-directive]="objectString">some text</div>
<div [my-directive]="'my text string'">some text</div>
<div [my-directive]="'<div style=\'color:red\'>my html text string</div>'">some text</div>
所有这个选项对我都有用。
但是,如果我还想支持这样的事情,那该怎么办呢?
<div [my-directive]="myhtmlfile.html">some text</div>
我能这样做吗?它将如何编译成html字符串?