Hi,
Here is my code.There is no any output.
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<title>Welcome</title>
<script type="text/javascript" src="angular.min.js"></script>
<script type="text/javascript">
var myApp=angular.module('myApp',[]);
myApp.controller('myCtrl',function($scope,$http){
$http.get('http://apibeta.yourstory.com/v1/site/YOURSTORY/articles').success(function(response){
$scope.mydata=response;
//alert(response[0].name);
});
});
</script>
</head>
<body ng-controller="myCtrl">
<table border="1">
<tr ng-repeat="data in mydata">
<td>{{data.unique_id}}</td>
<td>{{data.title}}</td>
</tr>
</table>
</body>
</html>
It work well with browser.
please help me
Thanks and regards
mohit kumar