#index.html#
<html >
  <head>
    <script 
src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js";></script>
    <script src="script.js"></script>
  </head>
  <body ng-app="myapp">

    <div ng-controller="Ctrl">
      <button  ng-click="addcomment()">Submit</button>
      <p ng-repeat="x in messages track by $index">{{x}}</p>
    </div>
  </body>
</html>

#script.js#
var app = angular.module('myapp', []);
app.controller('Ctrl', function($scope){
  $scope.messages=[];
  $scope.addcomment = function(){
   $scope.messages.push("Hi"); 
  }
});

Try to compare with this

Le mardi 16 juin 2015 11:28:51 UTC+2, Anusha Iyengar a écrit :
>
> I tried it out but it didn't work either. :) 
> Is there another way altogether??
>
> On Fri, Jun 12, 2015 at 4:21 PM, Yogesh N <[email protected] 
> <javascript:>> wrote:
>
>> Duplicates in a repeater are not allowed. Use 'track by' expression to 
>> specify unique keys
>>
>> for complete details, click the below
>> https://docs.angularjs.org/error/ngRepeat/dupes?p0=x%20in%20messages&p1=string:Hi&p2=Hi
>>
>>
>> Use this code:
>>
>> <button  ng-click="addcomment()">Submit</button>
>>  <p ng-repeat="x in messages track by $index">{{x}}
>> <br>
>> </p>
>>
>>
>>
>>  -- 
>> You received this message because you are subscribed to a topic in the 
>> Google Groups "AngularJS" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/angular/mZR_svp6P-0/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> [email protected] <javascript:>.
>> To post to this group, send email to [email protected] 
>> <javascript:>.
>> Visit this group at http://groups.google.com/group/angular.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to