如何通过http从IP地址以角度2发布服务器调用

时间:2017-02-24 12:27:06

标签: angular server ip

当我尝试通过ip连接到我的服务器时,它在我的控制台中显示错误但是当我通过邮递员尝试时它工作了。任何人都可以帮助我。谢谢。

我的错误,

 core.umd.js:3066 ORIGINAL EXCEPTION: Failed to execute 'open' on 'XMLHttpRequest': Invalid URL

我的代码,

onSubmit(form:any){
    var headers = new Headers();
    headers.append('Content-Type', 'application/json');
    this.http.post('193.568.0.14:5000/api/signup', form.value, { headers: headers}).subscribe(
        response => {
            if(response.json().error_code == 0){
            }

        })
}

1 个答案:

答案 0 :(得分:0)

你必须添加 - http://

onSubmit(form:any){
   var headers = new Headers();
   headers.append('Content-Type', 'application/json');
   this.http.post('http://193.568.0.14:5000/api/signup', form.value, { headers: headers}).subscribe(
    response => {
        if(response.json().error_code == 0){
        }

    })
}