js对象格式化为表单数据

2021-03-07 06:27

阅读:670

标签: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


评论


亲,登录后才可以留言!