angularjs连接restfull webservice

时间:2015-07-22 10:06:20

标签: angularjs

当我尝试使用以下代码

连接本地restfull webservice时
/*Doesn't work*/ 
$http.jsonp('http://localhost:8080/RestfulAndAngularJS_Server/rest/product/findall')
/*Works*/
$http.jsonp('https://api.mongolab.com/api/1/databases/angularjs-intro/collections/users?apiKey=terrPcifZzn01_ImGsFOIZ96SwvSXgN9')

    .success(function(data) {
        console.log('Success '+data);                
    })
    .error(function(data) {
        console.log('Error '+data);
    });

请告诉我为什么它不起作用

0 个答案:

没有答案