只是尝试这个:
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。