I use only angularJs...I created a file "script.js" and in this file wrote
this:
var modulo = angular.module('progetto', ['ngRoute']);
// configure our routes
modulo.config(function ($routeProvider, $httpProvider) {
$routeProvider
// route for the home page
.when('/', {
templateUrl: 'listaFilm.html',
controller: 'listaController'
})
// route for the description page
.when('/:phoneName', {
templateUrl: 'description.html',
controller: 'descriptionController'
});
$httpProvider.defaults.headers.common['Access-Control-Allow-Origin']
= '*';
});
modulo.controller('listaController', function ($scope, $http) {
$http.get('https://api.getevents.co/event?&lat=41.904196&lng=12.465974'
).success(function (data) {
$scope.names = data;
}).
error(function (data, status) {
$scope.names = "Request failed";
});
});
In this code i want to use angularJs $http.
Il giorno giovedì 9 aprile 2015 19:20:36 UTC+2, Rafael Bernard Rodrigues
Araujo ha scritto:
>
> To reproduce all headers for PHP as Samuel did for Node:
>
> ===
> header("Access-Control-Allow-Origin: *");
> header('Access-Control-Allow-Methods', 'GET,POST,PUT,HEAD,DELETE,OPTIONS');
> header('Access-Control-Allow-Headers', 'content-Type,x-requested-with');
> ===
> --
> Rafael Bernard Rodrigues Araújo
> about.me/rafaelbernard
> Analista de Tecnologia | Hospedagem de sites - http://oservidor.com
>
>
>
--
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.