SHARE
TWEET

Untitled

a guest Dec 12th, 2014 149 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function () {
  2.  
  3.         var app = angular.module("app", ['ngRoute']);
  4.         app.controller("postCtrl", ['$http', '$log', function($http, $log){
  5.                 this.response = "test2";
  6.                
  7.                 $http.get('/server/content.php').success(function(data){
  8.                         this.response = data;
  9.                 });
  10.                
  11.         }]);
  12.  
  13. })();
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
Not a member of Pastebin yet?
Sign Up, it unlocks many cool features!
 
Top