我按照django-rest-registration的基本步骤进行了操作,直到我尝试使用axios将我的后端API与ReactJs连接起来,并且此错误显示“访问不允许Access-Control-Allow-Origin” - 控制 - 允许报头“
App.js
axios({method:'post',url: 'http://127.0.0.1:8000/a/login/',headers: {
'Access-Control-Allow-Origin': '*',
}
})
.then(res => {
const user = res.data;
this.setState({ user });
console.log(res.data)
})
settings.py
CORS_ORIGIN_ALLOW_ALL = True
但是,当我将URL更改为我的其他URL时,GET
的效果非常好