当我尝试post
方法与nodejs as backend
做出反应时,它会得到error
,我不知道为什么,但我认为我的编码只是正确的。请帮我解决这个问题。
Failed to load localhost:3000/doctors/register: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.
dispatchXhrRequest @ xhr.js:178
xhrAdapter @ xhr.js:12
dispatchRequest @ dispatchRequest.js:59
Register.js:36 Error: Network Error
at createError (createError.js:16)
at XMLHttpRequest.handleError (xhr.js:87)
at dispatchXhrRequest (xhr.js:178)
at new Promise (<anonymous>)
at xhrAdapter (xhr.js:12)
at dispatchRequest (dispatchRequest.js:59)
in react
import React, { Component } from 'react'
import axios from 'axios';
class Register extends Component {
constructor() {
super()
this.state = {
name: '',
gender:'',
designation:'',
email: '',
password: '',
confirm_password: '',
hospital_id:'',
errors: {}
}
this.onChange=this.onChange.bind(this);
this.onSubmit=this.onSubmit.bind(this);
}
onChange(e) {
this.setState({[e.target.name]:e.target.value})
}
onSubmit(e) {
e.preventDefault();
var resObj ={
name:this.state.name,
gender:this.state.gender,
designation:this.state.designation,
email:this.state.email,
password:this.state.password,
confirm_password:this.state.confirm_password,
hospital_id:this.state.hospital_id
}
axios.post('localhost:3000/doctors/register',resObj)
.then(res => console.log(res.data))
.catch(err => console.log(err))
}
render() {
return (
<div className="register">
<div className="container">
<div className="row">
<div className="col-md-8 m-auto">
<h1 className="display-4 text-center">Sign Up</h1>
<p className="lead text-center">Create your account</p>
<form onSubmit={this.onSubmit}>
<div className="form-group">
<input type="text" className="form-control form-control-lg" placeholder="Name" name="name" value={this.state.name} onChange={this.onChange} />
</div>
<div className="form-group">
<input type="text" className="form-control form-control-lg" placeholder="Gender" name="gender" value={this.state.gender} onChange={this.onChange} />
</div>
<div className="form-group">
<input type="text" className="form-control form-control-lg" placeholder="Designation" name="designation" value={this.state.designation} onChange={this.onChange} />
</div>
<div className="form-group">
<input type="email" className="form-control form-control-lg" placeholder="Email Address" name="email" value={this.state.email} onChange={this.onChange}/>
</div>
<div className="form-group">
<input type="password" className="form-control form-control-lg" placeholder="Password" name="password" value={this.state.password} onChange={this.onChange} />
</div>
<div className="form-group">
<input type="password" className="form-control form-control-lg" placeholder="confirm Password" name="confirm_password" value={this.state.password2} onChange={this.onChange} />
</div>
<div className="form-group">
<input type="text" className="form-control form-control-lg" placeholder="Hospital_id" name="hospital_id" value={this.state.hospital_id} onChange={this.onChange} />
</div>
<input type="submit" className="btn btn-info btn-block mt-4" />
</form>
</div>
</div>
</div>
</div>
)
}
}
export default Register;
答案 0 :(得分:3)
您错过了http://
或//
之前的简单localhost
使用//localhost...
应自动使用当前使用的协议
答案 1 :(得分:2)
根据要求单独回答 - 一旦设置了代理,您不再需要提供完整路径,并且相对的路径将起作用
localhost:3000 /医生/注册/医生/注册
答案 2 :(得分:2)
对我有用的解决方案是在NodeJS服务器main / index / server.js文件中定义app
之后将标头设置为。
app.use((req, res, next) => {
res.set({
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE',
'Access-Control-Allow-Headers': 'Content-Type'
})
next();
})
这应该解决它。
答案 3 :(得分:1)
这是一个CORS问题 - 在您的react客户端package.json
中为您的API提供代理 "proxy": "http://localhost:5000/"
然后,您还需要更新组件中的网址
这是一篇类似的帖子How to create a proxy in React/Webpack to call an external API
答案 4 :(得分:0)
反应:
axios.defaults.headers.post['Content-Type'] ='application/x-www-form-urlencoded';
axios.defaults.headers.post['Access-Control-Allow-Origin'] = '*';
axios.post('http://localhost:port/..../add_', obj)
.then(res => console.log(res.data));
这里是“ HTTP:// .....”。 节点:app.js
app.use(function(req,res,next){
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS');
res.header('Access-Control-Allow-Headers', 'Content-Type, Authorization, Content-Length, X-Requested-With');
res.header("Access-Control-Allow-Credentials", true);
next();
});