I am very new on ionic framework i have a user list in which some data are available when i am trying to fetch that data from parse its not showing by the ng-repeat its shows <!--Use in User --> what is this error and why ? please help me?

angular.module(‘parse-starter.controllers’)
.controller(‘FetchCtrl’,function ($scope,$state) {
$scope.User =[];
$scope.getUser =function(params){
var User = Parse.Object.extend(User);
var query = new Parse.Query(User);
if(params !== undefined) {
if(params.username !== undefined) {
query.equalTo(“username”, params.username);
}
if(params.fn !== undefined) {
query.equalTo(“fn”, params.fn);
}
}
query.find({
success: function(results) {
$scope.User = results; },
error: function(error) {
alert("Error: " + error.code + " " + error.message);
}
});
}
});
This is the Html

Name Email Username
{{use.fn}} {{use.email}} {{use.username}}

This is the html

Name Email Username
{{use.fn}} {{use.email}} {{use.username}}
Name Email Username
{{use.fn}} {{use.email}} {{use.username}}