首页 > Web开发 > 详细

js对象格式化为表单数据

时间:2020-05-14 18:56:13      阅读:91      评论:0      收藏:0      [点我收藏+]

只适用于 简单的数据转换

function (data) {
              // Do whatever you want to transform the data
              let ret = ‘‘
              for (let it in data) {
                ret += encodeURIComponent(it) + ‘=‘ + encodeURIComponent(data[it]) + ‘&‘
              }
              return ret
 }

js对象格式化为表单数据

原文:https://www.cnblogs.com/shiazhen/p/12890450.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!