问题可能是由于后端返回的响应中没有包含主体内容导致的。在 Angular 中,http.put
方法返回的是一个 Observable
,其中 T
是响应主体的类型。当后端返回的响应中没有主体内容时,HttpResponse
对象的值将为 null
。
为了解决这个问题,你可以使用 observe: 'response'
选项来配置 http.put
方法,以便获取完整的响应对象,而不仅仅是主体内容。这样可以确保即使没有主体内容,HttpResponse
对象也将被正确地返回。
以下是一个示例代码:
import { HttpClient, HttpResponse } from '@angular/common/http';
// ...
constructor(private http: HttpClient) { }
// ...
// 在你的方法中调用 http.put
this.http.put(url, data, { observe: 'response' }).subscribe(
(response: HttpResponse) => {
// 检查响应的状态码
if (response.status === 204) {
console.log('PUT 请求成功,返回 204');
} else {
console.log('PUT 请求成功,返回 200');
}
},
(error) => {
console.log('PUT 请求失败', error);
}
);
通过使用 observe: 'response'
选项,你将得到一个完整的响应对象。然后,你可以检查响应对象的 status
属性,以确定返回的状态码是 200 还是 204。