当我尝试通过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){
}
})
}
答案 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){
}
})
}