Nothing displayed while parsing JSON object including unicode data in angular js.
app.controller('customersCtrl', function($scope, $http) {
$http.get("http://www.hrjournalmyanmar.com/getarticle.cfm")
.success(function (response) {$scope.names = response.mmjobs});
});
<md-list-item class="md-3-line" ng-repeat="item in names">
<div class="md-list-item-text" layout="column">
<h3>{{ item.title }}</h3>
</div>
<md-divider inset></md-divider>
</md-list-item>
Please help me how to solve it? Because I'm very new in angularJS.