recherche

Maison  >  Questions et réponses  >  le corps du texte

angulaire.js - Comment filtrer le xxx.yyy (chaîne) parcouru par ng-repeat dans un tableau sur la page


<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é ?

淡淡烟草味淡淡烟草味2779 Il y a quelques jours620

répondre à tous(1)je répondrai

  • PHP中文网

    PHP中文网2017-05-15 17:04:33

    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
        }
    })

    répondre
    0
  • Annulerrépondre