我使用 angularjs 作为前端,使用一些 Java Spring 应用作为后端
网络服务 RESTful Web服务
我应该从服务器获取JSON。
但问题是它被调用时它在html页面中没有显示任何内容
$http({
url: "http://melkban24.ir/city/json/2",
dataType: "json",
method: "GET",
headers: {
"Content-Type": "application/json"
}
}).success(function(response){
allStates = response;
$log.info(response);
}).error(function(error){
allStates = error;
$log.info(error);
});
每次进入错误功能