Hi Anusha Iyengar
Try this it will work
Here is controller code:
.controller('Ctrl',function($scope){
$scope.messages=[];
$scope.addcomment = function(){
$scope.messages.push("Hi");
};
});
Here is the html code:
<div ng-controller="Ctrl">
<button ng-click="addcomment()">Submit</button>
<p ng-repeat="x in messages track by $index">
{{x}}
<br>
</p>
</div>
On Tuesday, June 16, 2015 at 2:58:51 PM UTC+5:30, Anusha Iyengar wrote:
>
> 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.