Angularjs:如何删除' \ r \ n'在我的输出中

时间:2016-02-08 16:56:27

标签: angularjs json

Angular为何以及如何在文字末尾添加 \ r \ n ?有一种方法可以删除它们吗?此外,我有其他字段与文本但 \ r \ n 不存在!!我的json输出示例:

{ description : "Description of the country USA \r\n"
id : 12
name : "USA\r\n"
continent : "North of America"
}

正如你所看到的那样,非洲大陆也是一个文本,但我不知道最后的\ r \ n。

2 个答案:

答案 0 :(得分:3)

创建角度过滤器说noCarriageReturn删除\ r \ n,如下所示 - JSFiddle供参考 - Demo

Net::IP

希望这有帮助!

答案 1 :(得分:0)

将过滤器添加到绑定该值的位置。在该过滤器中,您使用splice()切割var country [0].name的最后4个字符;方法。