在角度表达式json数据中读取br或pre或html标记

时间:2016-05-02 18:43:44

标签: javascript html angularjs



/* 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;
&#13;
&#13;

我希望角度表达式能够将json数据与原样的换行符绑定在一起。

2 个答案:

答案 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