ajax post呼叫WebMethed報錯,返回的資訊如下:
{“Message”:“處理請求時出錯”,“StackTrace”:“”,“ExceptionType”:“”}
查了一下WebMethed裡的方法沒有問題,網上找了好久也沒有什麼解決方案。
後來自己發現可能是返回的json文字太長了,於是在webconfig加了如下的配置:
<system.web.extensions>
<scripting>
<webServices>
<!–單位為位元組–>
<jsonSerialization maxJsonLength=”1024000″ />
</webServices>
</scripting>
</system.web.extensions>
最終問題解決了。