What's the difference between .serialize() and .serializeArray()?

蓝咒 提交于 2019-12-17 09:45:55

问题


I'm experimenting with sending a form to a controller. jQuery documentation says that .serializeArray() should send a json array, and .serialize() should create a query string.

However, when I try it, and inspecting with IE9 F12-mode, it looks like a query string, in both cases. Which ever call I make...

What am I missing?


回答1:


serializeArray creates an array (not a "json array" -- there is no such thing); you can test this yourself with console.log($("#myform").serializeArray()). On the other hand, serialize creates a query string that's meant to be part of an HTTP request. Both representations are equivalent in the sense that using appropriate code you can convert one to the other without any ambiguity.

The reason for both versions being available is that serialize is more convenient when you just want to make an HTTP request (just put the result in the query string) while serializeArray is more convenient if you want to process the results yourself.

jQuery's AJAX methods don't care if you give them one or the other because they detect the type of the parameter and convert it to a query string if it's not one already, so by the point the request is made outside observers cannot tell what was the original format of the parameters.



来源:https://stackoverflow.com/questions/10430502/whats-the-difference-between-serialize-and-serializearray

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!