当我尝试使用以下代码
连接本地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);
});
请告诉我为什么它不起作用