The JSON value could not be converted to System.Nullable`1[System.Decimal]。前台给后台int?,Decimal?传递参数问题,后台无法接收空参数,无法接收到应该为null的参数 电脑版发表于:2023/7/27 21:33 前台传递的参数到后台报错:The JSON value could not be converted to System.Nullable`1[System.Decimal] 这个是因为前台有些针对后台的参数比如int,deciaml,没有填写的时候赋默认值的问题。 **后台是decimal?或者int?这类,要给null,不能给""** 写成这种不行 ``` state.tableData.push({ gp20: "", gp40: "", hq40: "", }) ``` 要写成这种 ``` state.tableData.push({ gp20: null, //后台是decimal?,要给null,不能给"" gp40: null, hq40: null, }) ```