Is it possible to send large amount of data (grid content for example) in $.ajax
, to controller?
Are there workarounds of "URI too long" thing?
I know it's probably not the best practice, instead I should probably send each row one by one, but still is it possible?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
Are there workarounds of "URI too long" thing?
Use a POST HTTP verb instead of GET:
$.ajax({
url: '/foo',
type: 'POST',
data: { value: someVariableThatCouldBeHuge },
success: function(result) {
// TODO: process the results
}
});
or the equivalent:
$.post('/foo', { value: someVariableThatCouldBeHuge }, function(result) {
// TODO: process the results
});