Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的页面上有一个单个字段的表单,我只想知道最好发送一个参数,例如
var myObject = {myParameter:'My Value'};
或者
var myObject = {myParameter : myForm.Serialize()};
这取决于服务/控制器期望接收的内容。如果参数是form使用.serialize()else ,则直接指定值。
form
.serialize()
在幕后.serialize()根据表单元素创建基于文本的字符串。IE:
formItem=FormItem1&FormItem2=formItem2
所以真的没什么区别。