使用观察在 angular 中获得完整响应:使用其他设置 'response'
Get full response in angular with observe: 'response' with other settings
有效
return this.http.post(url, data, {observe: 'response'})
但由于某些原因它没有
let options = {
headers: new HttpHeaders().set('Content-Type', "application/json"),
withCredentials: true,
observe: 'response'
}
return this.http.post(url, data, options)
为什么以及如何使用 observe: 'response' 在这种情况下?
您应该准确地说出什么不起作用。我猜打字稿编译器在抱怨类型。
你可以这样解决:return this.http.post(url, data, options as any)
有效
return this.http.post(url, data, {observe: 'response'})
但由于某些原因它没有
let options = {
headers: new HttpHeaders().set('Content-Type', "application/json"),
withCredentials: true,
observe: 'response'
}
return this.http.post(url, data, options)
为什么以及如何使用 observe: 'response' 在这种情况下?
您应该准确地说出什么不起作用。我猜打字稿编译器在抱怨类型。
你可以这样解决:return this.http.post(url, data, options as any)