The JSON request was too large to be deserialized

刚才对数据进行批量更新时,收到一条错误信息:The JSON request was too large to be deserialized。web

 

 

查找资料,原来json对象数量有限制,得须要在web.config时行配置参数:json

 

 <appSettings>    
    <add key="aspnet:MaxJsonDeserializerMembers" value="500000"/>
  </appSettings>
Source Code
相关文章
相关标签/搜索