使用spring boot的create-react-app,设置代理服务器

时间:2018-09-05 05:59:20

标签: reactjs spring-boot http-proxy

我有一个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。

0 个答案:

没有答案