剛纔對數據進行批量更新時,收到一條錯誤信息:The JSON request was too large to be deserialized。 查找資料,原來json對象數量有限制,得需要在web.config時行配置參數: <appSettings> <add key="aspnet:MaxJs ...
剛纔對數據進行批量更新時,收到一條錯誤信息:The JSON request was too large to be deserialized。
查找資料,原來json對象數量有限制,得需要在web.config時行配置參數:
![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
<appSettings> <add key="aspnet:MaxJsonDeserializerMembers" value="500000"/> </appSettings>Source Code