top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is Restangular?

0 votes
314 views
What is Restangular?
posted Nov 11, 2017 by Latha

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Restangular is an Angular service specifically designed simply to fetch data from the rest of the world. To
use Restangular you need to link the restangular.js file and include restangular resource as a dependency within
your angular app.

var app = angular.module('myApp', ['restangular']);
app.controller('MainController',function ($scope, Restangular) {
 //TO DO:
 });
answer Nov 11, 2017 by Shivaranjini
...