如何使用长字符串并希望用换行符分隔部分文本。
似乎\ n或\ n不起作用或
数据库中有什么:
description: "Hello \n world"
当我检索数据时
Hello world
而不是:
您好
世界
答案 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>
其他选项是在app depenency中使用<pre>{{description}}</pre>
指令+添加ng-bind-html
模块
ngSanitize