我的json看起来像这样(我可以在chrome console.log中看到它)
Line 1 ↵ line 2
我需要我的html才能像这样打印
Line 1
line 2
我正在尝试这样
<address [innerHTML]="store.address"></address>
但是全部打印在一行上。
答案 0 :(得分:1)
您应该尝试将[innerHTML]包装在<pre></pre>
标记中
答案 1 :(得分:1)
使用pre
标签或CSS:
address{
white-space: pre-wrap;
}
答案 2 :(得分:0)
p.c {
white-space: pre;
}
<p class="c">
This is text 1.
This is text 2.
This is text 3.
This is text 4.
</p>
使用于:
<p class="c">
This is text 1.
This is text 2.
This is text 3.
This is text 4.
</p>
p.c {
white-space: pre;
}