angular.js中 ng-repeat="i in [1]" ng-repeat="item in [1, 2]"什么意思

<div ng-controller="EventController">
  Root scope
  <tt>MyEvent</tt> count: {{count}}
  <ul>
     <li ng-repeat="i in [1]" ng-controller="EventController">
        <button ng-click="$emit('MyEvent')">
           $emit('MyEvent')
        </button>
        <button ng-click="$broadcast('MyEvent')">
           $broadcast('MyEvent')
        </button>
        <br>
        Middle scope
        <tt>MyEvent</tt> count: {{count}}
        <ul>
           <li ng-repeat="item in [1, 2]" ng-controller="EventController">
              Leaf scope
              <tt>MyEvent</tt> count: {{count}}
           </li>
        </ul>
     </li>
  </ul>
</div>

super卉
浏览 4637回答 4
4回答

慕少3948738

同问。。

qq_彩虹的影子_0

[1]数组里有一个元素1,ng-repeat="i in [1]"遍历1次[1,2]数组里有一个元素1,2,ng-repeat="i in [1,2]"遍历2次

乱号

数组[1] 数组[1,2]

乱号

I am test
打开App,查看更多内容
随时随地看视频慕课网APP