要解决这个问题,您可以按照以下步骤进行操作:
确保您在Angular应用程序中正确导入了HttpClientModule
。
import { HttpClientModule } from '@angular/common/http';
@NgModule({
imports: [
HttpClientModule
],
...
})
export class AppModule { }
在Angular服务中使用HttpClient
的post
方法发送JSON对象。
import { HttpClient } from '@angular/common/http';
constructor(private http: HttpClient) { }
sendJsonData(data: any) {
return this.http.post('api/your-action-url', data);
}
在ASP.NET Core后端的Action中,使用FromBody
特性获取传递的JSON对象。
[HttpPost("your-action-url")]
public IActionResult YourAction([FromBody] YourModel model)
{
// 处理接收到的数据
// ...
return Ok();
}
确保您的YourModel
类与JSON对象的属性匹配。
public class YourModel
{
public string Property1 { get; set; }
public int Property2 { get; set; }
// 其他属性...
}
最后,确保您的请求头中包含Content-Type: application/json
。
const httpOptions = {
headers: new HttpHeaders({
'Content-Type': 'application/json'
})
};
this.http.post('api/your-action-url', data, httpOptions);
通过遵循上述步骤,您应该能够正确地将JSON对象发送到ASP.NET Core Action并成功接收到数据。