我有以下模型:
{
content: "Hello world, this is a sample content",
notes: {
content: "side note, some text here.",
index: 2
}
}
我喜欢将上述模型编译为以下 HTML:
<div class="content">
Hello world,*
<div class="note">side note, some text here.</div>
this is a sample text.
</div>
如何才能做到这一点?据我所知,最好的方法是使用指令,比如<div content="{{ content }}"></div>
. 我尝试编写此指令并使用编译服务但没有取得多大成功......
我想将使用其 HTML 编译的注释注入到第二个单词之后的内容中(参见注释索引位置为 2)。
我这里有两个模板,一个用于内容,第二个用于注释。我想用它的视图来编译注释,然后在第二个工作之后将它输入到内容文本中。然后,我想根据它的观点编译内容。