JavaScript

超轻量级php框架startmvc

JS多个表单数据提交下的serialize()应用实例分析

更新时间:2020-09-09 04:06:01 作者:startmvc
本文实例讲述了JS多个表单数据提交下的serialize()应用。分享给大家供大家参考,具体如下

本文实例讲述了JS多个表单数据提交下的serialize()应用。分享给大家供大家参考,具体如下:

在实际开发场景中,难免遇到需要多个表单的数据传递问题。

之所以要进行多表单的数据传递是因为可以进行数据分组,便于数据的维护。

这个时候,出于不依赖jquery的考虑,有一个原生js函数来解决这个问题无疑是最好的。而源自于《JavaScript高级程序设计》一书的serialize()函数就是解决这个问题的最好办法,该函数如下:


function serialize(form){
 var parts = [],
 field = null,
 i,
 len,
 j,
 optLen,
 option,
 optValue;
 for (i=0, len=form.elements.length; i < len; i++){
 field = form.elements[i];
 switch(field.type){
 case "select-one":
 case "select-multiple":
 if (field.name.length){
 for (j=0, optLen = field.options.length; j < optLen; j++){
 option = field.options[j];
 if (option.selected){
 optValue = "";
 if (option.hasAttribute){
 optValue = (option.hasAttribute("value") ? option.value : option.text);
 } else {
 optValue = (option.attributes["value"].specified ? option.value : option.text);
 }
 parts.push(encodeURIComponent(field.name) + "=" + encodeURIComponent(optValue));
 }
 }
 }
 break;
 case undefined: //fieldset
 case "file": //file input
 case "submit": //submit button
 case "reset": //reset button
 case "button": //custom button
 break;
 case "radio": //radio button
 case "checkbox": //checkbox
 if (!field.checked){
 break;
 }
 /* falls through */
 default:
 //don't include form fields without names
 if (field.name.length){
 parts.push(encodeURIComponent(field.name) + "=" + encodeURIComponent(field.value));
 }
 }
 }
 console.log(parts);
 return parts.join("&");
}

对于读过《JavaScript高级程序设计》的小伙伴来说,这个函数肯定不陌生;

但是如果我们传递的是一个对象,那么这个函数显然就不符合要求,而在这个开发需求下,我们改下这个函数,改造后函数如下


function serialize(form){
 var parts = {},
 field = null,
 i,
 len,
 j,
 optLen,
 option,
 optValue;
 for (i=0, len=form.elements.length; i < len; i++){
 field = form.elements[i];
 switch(field.type){
 case "select-one":
 case "select-multiple":
 if (field.name.length){
 for (j=0, optLen = field.options.length; j < optLen; j++){
 option = field.options[j];
 if (option.selected){
 optValue = "";
 if (option.hasAttribute){
 optValue = (option.hasAttribute("value") ? option.value : option.text);
 } else {
 optValue = (option.attributes["value"].specified ? option.value : option.text);
 }
 //将数据改为对象形式
 Object.defineProperty(parts, encodeURIComponent(field.name), {
 value:encodeURIComponent(optValue),
 enumerable:true //为真表示可枚举,只有可枚举才能出现在JSON.stringify()转换的json数据中
 });
 }
 }
 }
 break;
 case undefined: //fieldset
 case "file": //file input
 case "submit": //submit button
 case "reset": //reset button
 case "button": //custom button
 break;
 case "radio": //radio button
 case "checkbox": //checkbox
 if (!field.checked){
 break;
 }
 /* falls through */
 default:
 //don't include form fields without names
 if (field.name.length){
 //构建对象
 Object.defineProperty(parts, encodeURIComponent(field.name), {
 value:encodeURIComponent(field.value),
 enumerable:true //为真表示可枚举,只有可枚举才能出现在JSON.stringify()转换的json数据中
 });
 }
 }
 }
 console.log(parts);
 return parts;
}

于是,表单数据改为对象显示。如果有多个表单将表单保存到一个数组之中,利用JSON.stringify()转为json格式,传给后端;

注意:

利用Object.defineProperty创建对象,要加上 enumerable:true,否则json格式中不会出现对应的对象数据。这个纯粹是JSON.stringify()的要求。

感兴趣的朋友可以使用在线HTML/CSS/JavaScript代码运行工具:http://tools.jb51.net/code/HtmlJsRun测试上述代码运行效果。

JS 表单 数据提交 serialize