Skip to main content

Posts

Showing posts with the label parsing

Simple RESTful Json parsing using AngularJs Tutorials - 1

<html ng-app id="customersApp">   <head>     <title>RESTful JSON Parsing using AngularJs Tutorials - 1</title>     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.min.js"></script>     <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>     <script>      function CustomersController ($scope,$http){                                         $http.jsonp('http://public-api.wordpress.com/rest/v1/sites/wtmpeachtest.wordpress.com/posts?callback=JSON_CALLBACK')         .success(function(data) {           $scope.value = data;    ...

Simple RESTful Json parsing using AngularJs Tutorials

REST mean Representational State Transfer <html ng-app id="customersApp">   <head>     <title>RESTful JSON Parsing using AngularJs Tutorials</title>     <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.min.js"></script>     <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>     <script>       function CustomersController ($scope, $http) {                               $http.get('http://public-api.wordpress.com/rest/v1/sites/wtmpeachtest.wordpress.com/posts')         .success(function (data) {           console.log(data.found);        ...