Any reason why ng-repeat-start doesn't work despite using the latest angularJS version?

Hongyi Li

Does anyone know why ng-repeat-start doesn't work despite using the latest version of AngularJS?

I'm importing it form the CDN:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular-resource.min.js"></script>

Then, when I do:

<li ng-repeat-start="phone in phones">
   blabblah
</li>
<li ng-repeat-end="">
   more blahblah
</li>

it doesn't work, but when i just do

<li ng-repeat="phone in phones">
  blahblah
</li>

it works again!

Does anyone know why? I've been gnawing at this problem for days, and I just can't find the answer. Can anyone help me?

AlwaysALearner

Versions problem. AngularJS version 1.0.8 dont support ng-repeat-start or ng-repeat-end.

Upgrade to 1.2.0-rc.2.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Angular: Why doesn't CSS justification work with ng-repeat?

From Dev

AngularJS ng-repeat doesn't update when LocalStorage is changed (using store.js)

From Dev

nested ng-repeat doesn't work

From Dev

AngularJS ng-repeat doesn't work

From Dev

Any reason why this javascript blink code won't work?

From Dev

Angularjs OrderBy on ng-repeat doesn't work

From Dev

AngularJS : Data binding in directive template doesn't work with ng-repeat

From Dev

AngularJS ng-repeat doesn't detected dynamically generated array using ng-include

From Dev

AngularJS ng-include won't work for some reason

From Dev

AngularJS : directive ng-repeat doesn't work in link function

From Dev

My AngularJS view is able to access it's controller's scope, but ng-repeat doesn't work

From Dev

ng-route in AngularJS doesn't work

From Dev

Why ng-if doesn't work?

From Dev

Ng-view in AngularJS doesn't work

From Dev

ng-repeat and ng-scrollbar doesn't work together

From Dev

Why doesn't this angularjs application start?

From Dev

nested ng-repeat doesn't work

From Dev

AngularJS ng-repeat doesn't work

From Dev

AngularJS: Why does this delegated ng-repeat not work inside a transclusion?

From Dev

Angularjs. Ng-repeat. Group of radio buttons doesn't work properly

From Dev

AngularJS ng-repeat doesn't detected dynamically generated array using ng-include

From Dev

AngularJS ng-include won't work for some reason

From Dev

My AngularJS view is able to access it's controller's scope, but ng-repeat doesn't work

From Dev

Using ng-repeat on a JSON object doesn't work - why?

From Dev

Why my form doesn't work when it's inside of ng-repeat?

From Dev

ng-repeat and ng-scrollbar doesn't work together

From Dev

ng-repeat using custom filter doesn't work as intended: no values shown

From Dev

Why IsMouseOver Trigger doesn't work despite cursor is not over the button?

From Dev

ng-repeat doesn't work properly

Related Related

  1. 1

    Angular: Why doesn't CSS justification work with ng-repeat?

  2. 2

    AngularJS ng-repeat doesn't update when LocalStorage is changed (using store.js)

  3. 3

    nested ng-repeat doesn't work

  4. 4

    AngularJS ng-repeat doesn't work

  5. 5

    Any reason why this javascript blink code won't work?

  6. 6

    Angularjs OrderBy on ng-repeat doesn't work

  7. 7

    AngularJS : Data binding in directive template doesn't work with ng-repeat

  8. 8

    AngularJS ng-repeat doesn't detected dynamically generated array using ng-include

  9. 9

    AngularJS ng-include won't work for some reason

  10. 10

    AngularJS : directive ng-repeat doesn't work in link function

  11. 11

    My AngularJS view is able to access it's controller's scope, but ng-repeat doesn't work

  12. 12

    ng-route in AngularJS doesn't work

  13. 13

    Why ng-if doesn't work?

  14. 14

    Ng-view in AngularJS doesn't work

  15. 15

    ng-repeat and ng-scrollbar doesn't work together

  16. 16

    Why doesn't this angularjs application start?

  17. 17

    nested ng-repeat doesn't work

  18. 18

    AngularJS ng-repeat doesn't work

  19. 19

    AngularJS: Why does this delegated ng-repeat not work inside a transclusion?

  20. 20

    Angularjs. Ng-repeat. Group of radio buttons doesn't work properly

  21. 21

    AngularJS ng-repeat doesn't detected dynamically generated array using ng-include

  22. 22

    AngularJS ng-include won't work for some reason

  23. 23

    My AngularJS view is able to access it's controller's scope, but ng-repeat doesn't work

  24. 24

    Using ng-repeat on a JSON object doesn't work - why?

  25. 25

    Why my form doesn't work when it's inside of ng-repeat?

  26. 26

    ng-repeat and ng-scrollbar doesn't work together

  27. 27

    ng-repeat using custom filter doesn't work as intended: no values shown

  28. 28

    Why IsMouseOver Trigger doesn't work despite cursor is not over the button?

  29. 29

    ng-repeat doesn't work properly

HotTag

Archive