/* sentence = "sdf vfgfhgjhkj,k ghhjjhjhjhj fgghghghgvvvv
ssdfgbghg vvffffffffffffffffffffffffbbbfbfffffffff
ccccccccccccccccccccccccccccccccccccccccccc"

<table class="table-responsive">
<th>notice</th>
<tr ng-repeat stment in data.note.statements>
<td>{{stment.sentence}}</td>
</tr>
</table>
&#13;
我希望角度表达式能够将json数据与原样的换行符绑定在一起。
答案 0 :(得分:0)
首先用\n
分割长句:
$scope.displayData = $scope.data.note.statements.split('\n');
然后在TABLE
中显示拆分数据 <table class="table-responsive">
<th>notice</th>
<tr ng-repeat="item in displayData">
<td>{{item}}</td>
</tr>
</table>
答案 1 :(得分:0)
和Manish,
不确定它是否可行但尝试使用:ng-bind-html
Mojo