我有一个create-react-app
托管在react.example.in
和springboot应用程序“ demo.example.in”上。我以
url:“ react.example.in/auth”
,它应返回一个包含令牌的对象作为响应,但返回html作为带有200 OK
状态码的响应。谁能指导我如何正确设置代理?
在我的React应用package.json
中,如下所示:
“代理”:“ https://demo.example.in”
axios({
method:'POST',
url:'/auth',
data:{username:'example@gmail.com',password:'123456789'}
}).then(res => {
console.log(res.data);
}).catch(res => {
console.log(res);
})
我正在获取包含根元素作为响应的index.html。