angulaire.js - Comment filtrer le xxx.yyy (chaîne) parcouru par ng-repeat dans un tableau sur la page
淡淡烟草味
淡淡烟草味 2017-05-15 17:02:33
0
1
617

<tr ng-repeat="ins in  instances">
  <td ><input type="checkbox" ng-model="icheckedList[ins.id]" ng-required="{{needOneList}}" ng-checked="all" one-least></td>
  <td><span ng-bind="ins.name"></span></td>
  <td><table><tr ng-repeat="p in ins.private_ip|privateip"></tr></table></td>
  <td ng-bind="ins.public_ip"></td>
</tr>

.filter('privateip',function() {
    return function(p) {
        p.split(',');
        return p
    }
})

Où ins.private_ip est une chaîne sous la forme de 1.2.3.4,94.8.7.6
Comment ins.private_ip peut-il être filtré dans une liste p dans ins.private_ip|privateip semble être le p qui est filtré et traversé ?

淡淡烟草味
淡淡烟草味

répondre à tous(1)
Ty80

Que signifie filtrer dans une liste ? Que fais-tu? Je peux d'abord le changer pour vous, mais je ne sais pas ce que ça fait :

<tr ng-repeat="ins in  instances">
  <td ><input type="checkbox" ng-model="icheckedList[ins.id]" ng-required="{{needOneList}}" ng-checked="all" one-least></td>
  <td><span ng-bind="ins.name"></span></td>
  <td>
      <table>
          <tr ng-repeat="p in ins.private_ip">
              <!-- 这里输出的就是数组了 -->
              {{ p | privateip }}
          </tr>
      </table>
  </td>
  <td ng-bind="ins.public_ip"></td>
</tr>

.filter('privateip',function() {
    return function(p) {
        p.split(',');
        return p
    }
})
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal