可能是因为创建响应时使用的Content-Type不是 application/json。在C#中添加如下代码:
return CreatedAtAction(nameof(MethodName), new { id = object.id }, object).Result;
在Angular中,为了访问响应值,需要在订阅API时使用map运算符。
例如:
this.http.post(url, data).pipe( map((result: any) => { // 这里可以访问响应值 console.log('Response Data:', result); }) ).subscribe();