从angular发布数据时遇到404 Not found问题,但在get请求期间没有给出404 not found错误

时间:2015-03-17 23:52:13

标签: javascript json angularjs node.js

这是我的目录Strucutre -

app.js public - 具有JSON文件的资源

这是我的Controller获取JSON文件

$http({
    url : url,
    method : 'GET',
    headers : {
        'Content-Type' : 'application/json'
    }
}).success(function(data,status,headers,config){
    $rootScope.home=data;
    console.log($rootScope.home.quotes);
}).error(function(data, status, headers, config){
    console.log("Error comes");
});

上述控制器获取请求未给出未找到的JSON文件的任何错误

这是我的POST控制器

var url = "Resources/JSON/home.json";

$http({
    method : 'POST',
    url : url,
    data : requestObject,
    headers : {'Content-Type' : 'application/json'}         
}).success(function(data, status, headers, config){
    console.log("This is will execute when there is some response");
}).error(function(data, status, headers, config){
    console.log("Error Comes while editing the stuff");
});

这会给出错误,因为找不到www.localhost:8000 / Resources / JSON / home.json错误,

有人可以帮我解决这个问题吗?

提前致谢

0 个答案:

没有答案