向Web服务发送错误的URL

时间:2018-09-21 15:33:57

标签: angularjs node.js web-services express

我正在从互联网学习node.js,angularjs。突然间,我对发展MEAN股票非常感兴趣。然后开始从互联网上学习,因此制作了具有Web服务的简单应用程序,并且它在具有两个不同端口的node.js中同时运行客户端和服务器端。这里有一个问题是在运行angular js GET时引发请求以不同的方式致电,请参见下文

var module = angular.module("1st_module",[]);


var angular_function = ['$scope','$http',function(number,$http){
    number.a = 0;
    number.b = 0;
    number.doit = function(){
    
        $http({ 
            method : 'GET',
			url : 'http//localhost:1000/ans?a=' + number.a + '&b=' + number.b
        }).then(function(res){
            //sucess
            debugger;
            number.ans = res.data;
            
            
        },function(res){
            //failures
            alert('ERROR Ocured');
            
            
        });
       
    };
 
}];
//adding controler to module 
module.controller('frist_controller',angular_function);

这将两个数字“ a”和“ b”相加,但出现错误,例如 enter image description here

1 个答案:

答案 0 :(得分:0)

wrong link was used: http// instead of http:// – Aleksey Solovey