如何使用Web浏览器在NoSQL数据中呈现换行符?

时间:2016-05-13 05:11:06

标签: javascript html angularjs json firebase

如何使用长字符串并希望用换行符分隔部分文本。

似乎\ n或\ n不起作用或

数据库中有什么:

description: "Hello \n world"

当我检索数据时

  

Hello world

而不是:

  

您好

     

世界

1 个答案:

答案 0 :(得分:5)

private List<FinancialReport> entries; private List<FinancialReport> nonZeroEntries; entries = this.financialReportDao.getAllLedger(ledgerName); // now entries list have 26 entries with zero and nonzero. for (int i = 0; i < entries.size(); i++) { FinancialReport entry = this.entries.get(i); if((entry.getCredit()!=entry.getDebit()) ) { nonZeroEntries.add(entry); // it shows error here. } } } 标记中包含内容,以便在视图中正确格式化。

<pre>

Demo Here

其他选项是在app depenency中使用<pre>{{description}}</pre> 指令+添加ng-bind-html模块

ngSanitize

Plunkr