网址解析过程中的Http失败

时间:2019-01-08 06:36:29

标签: json angular

login.ts

onLogin() {
  let input = new FormData();
  input.append('email','ajith@gmail.com')
  input.append('password','12356789')
  this.http.post('http://worthyconsultants.in/training/api/v1/user/login',
  input,{responseType: 'json'}).subscribe(res=>{
    console.log(res)
     },
      err=>{
    console.log(err)
    }) 
   }

这是我的登录功能,但响应是错误。说分析错误 enter image description here

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:0)

首先,您同意使用POSTMAN工具发送的发帖请求,如果可以,请点击此链接,它可以帮助您,或者可能是后端问题 [在此处输入链接说明] [1]

https://www.youtube.com/watch?v=HgKx36cpu60

答案 1 :(得分:0)

在后端代码上有一个打印语句,这就是为什么在邮递员漂亮的视图中看起来不错。