防止自动连接字符串到url

时间:2015-07-28 02:17:25

标签: javascript

只有在Chrome和Firefox浏览器中的笔记本电脑上才会出现此问题。 我有一个服务来获取数据表单服务器。

function add(label) {
    var url = host + "/rest/labels/";
    var request = $http({
        method : 'post',
        url : url,
        headers : {
            'Content-Type' : 'application/json'
        },
        data : label
    });
    return (request.then(handleSuccess, handleError));
}

如果我调试,我会得到url: http://example.com/rest/labels/。但是在网络调试中,它似乎正在发送url: http://example.com/web/example.com/rest/labels/,因此它返回404。

在其他系统中,它运行良好,如果我在localhost中运行它也很有效。

我的系统有问题吗?以及如何解决它?

0 个答案:

没有答案