我正在尝试处理从响应中返回的成功和失败,当我在文学中得到回应时它会在contoller中给出错误
这是我的服务代码
Formatted dateTime: 2011-01-24T09:45:00.000Z
这是我的控制器代码
authentication(userName : string, password:string){
return this.http.get(this.url).map(data=>{
data.json()
});
它给出了我的错误响应.status和response.message
答案 0 :(得分:0)
您需要从map
回复中返回一些内容:
authentication(userName : string, password:string){
return this.http.get(this.url).map(data=>{
return data.json(); //<-- return this
});
}