我遇到了烦人的问题。我在Google App Engine上有一个应用程序,它将一些数据(格式化为JSON字符串)从JS通过POST发送到php页面。但是当我选择超过特定数量的数据时,根本不会返回任何内容。我已经尝试将post_max_size增加到20M,但并不是更好。那么在哪里可以限制?是否有另一种可能从JS获取数据到PHP?我试过这样:
function openWindowWithPost(url, name, keys, values) {
var newWindow = window.open(url, name);
if (!newWindow)
return false;
var html = "";
html += "<html><head></head><body><form id='formid' method='post' action='"
+ url + "'>";
if (keys && values && (keys.length == values.length))
for (var i = 0; i < keys.length; i++)
html += "<input type='hidden' name='" + keys[i] + "' value='"
+ values[i] + "'/>";
html += "</form><script type='text/javascript'>document.getElementById(\"formid\").submit()</sc"
+ "ript></body></html>";
newWindow.document.write(html);
return newWindow;
}
答案 0 :(得分:1)
如果您发布这些大文件,也许您应该检查upload_max_filesize
- 设置。
另一种可能性:你的大JSON文件是否有效?你可以在这里试试: http://jsonlint.com/
答案 1 :(得分:1)
您可以检查服务器配置文件$("#body-part").css("padding-left", ($("#wrapper-250").width() + 10));
并检查最大帖子大小php.ini
。如果默认的帖子字符串长度不够,则可以增加它的长度。
答案 2 :(得分:1)
您可能会点击32 MB limit per request。要解决这个问题,您需要改为Upload to GCS。