All Questions
Tagged with angularjs-http angularjs-routing
5 questions
2
votes
0
answers
1k
views
Angularjs showing 500 internal server error on posting data to laravel routes
For some reason I'm getting a 500 interval server error when posting data from angular to laravel route.
app.js
var quora = angular.module("quora-app", ['q-controller-1', 'ngRoute', function($...
0
votes
0
answers
715
views
AngularJS : Showing a spinner while during $http request
I put in place some routes with the $routeProvider.
The place is that some templates need some time to load because of the $http requests.
What I wanted to do is to display a spinner or a wait ...
1
vote
2
answers
1k
views
angular routing with ng-include
It's a little complex to describe my problem.Now I have two pages to be routed. One is project.jsp,the other is ticket.jsp.The latter can be included in the former using ng-include.
In index.jsp,I ...
-1
votes
2
answers
2k
views
POST 404 Not found.. Angular js
here i'm sending data through $http.post to data/user.php
app.factory('loginService',function($http){
return{
login:function(data,scope){
var $promise=$http.post('data/user....
0
votes
1
answer
922
views
AngularJS request interceptor causing trouble to my templateUrl view resolution
I would like to prepend the value of my <base href="... href attribute to all get and post $http calls. I tried using a request interceptor as follows:
angular.module('curriculumModule', ['ng', '...