Here is my code:

var myevents = angular.module('myeventsApp', []);

myevents.controller("EventsController", function ($scope, $http) {
    $http.get('http://mugh-events.azurewebsites.net/api/events/').
    success(function (data) {
        $scope.events = data;
    });
});

<!DOCTYPE html><html><head>
  <link rel="stylesheet" 
href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
  <script 
src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js";></script></head><body
 ng-app="myeventsApp">
  <div ng-controller="EventsController" class="container">
    <h1>Events</h1>
    <hr/>
    <div ng-repeat="event in events" class="col-md-6">
      <h4>{{event.Name}}</h4>
      <p>{{event.Description}}</p>
    </div>
  </div></body></html>

I not getting any result.. Please suggest me.. 


-- 
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.

Reply via email to