试试这个:
var baseurl = "http://platform.fatsecret.com/rest/server.api";
var request = $http.get(baseurl);
request.success(function(html) {
$log.log(html);
});
request.error(function(html) {
$log.log(html);
});
但有角度的前缀是http://localhost/
为什么它使用相对网址?如何更改它以使用绝对URL。