ajax 提交时,默认采用的是 get提交方式,数据是放在头部的,数据量超过了限制,所以报错。
改成 post提交,将数据放到 body 中。解决问题。
其他解决方法:
http://stackoverflow.com/questions/2472905/request-header-is-too-large
the proper solution is to add the following property under http-listener:
本文共 234 字,大约阅读时间需要 1 分钟。
ajax 提交时,默认采用的是 get提交方式,数据是放在头部的,数据量超过了限制,所以报错。
改成 post提交,将数据放到 body 中。解决问题。
其他解决方法:
http://stackoverflow.com/questions/2472905/request-header-is-too-large
the proper solution is to add the following property under http-listener:
转载地址:http://bixno.baihongyu.com/