Angular http获取使用绝对url而不是相对url

时间:2015-01-13 21:21:19

标签: angularjs get relative-path absolute-path relative-url

试试这个:

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。

0 个答案:

没有答案