我已经在应用程序中实现了GET请求,并且能够在 AccountComponent 中为我的帐户表获取数据。
当我单击 DataGrid 中的特定行时,我得到一个 POPUP 窗口,在其中可以访问row_data,并使用下拉菜单可以更新** DataGrid * *
但是,当我为下拉列表选择所需的值并尝试更新时,我的控制台出现以下错误。
Error code is : Error {"message":"Null values are not allowed","error":"java.lang.NullPointerException","path":"/spacestudy/rockefeller/admin/account/saveAttributes"}
请访问我的示例StackBlitz here
下面显示的是我的示例应用程序的屏幕截图。
This is my Account Table
When I click on a row here is my POPUP
When I try to update I'm getting the following error in my console & Network tab
But when I'm trying to save it from backend through Swagger UI,then I'm able to successfully update the data
有人可以帮我解决这个问题吗?...