码迷,mamicode.com
首页 > Web开发 > 详细

js对象格式化为表单数据

时间:2020-05-14 19:26:41      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:js对象   uri   ret   数据   对象   eve   hat   UNC   简单的   

只适用于 简单的数据转换

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对象格式化为表单数据

标签:js对象   uri   ret   数据   对象   eve   hat   UNC   简单的   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!