js对象格式化为表单数据
2021-03-07 06:27
标签:js对象 uri ret 数据 对象 eve hat UNC 简单的 js对象格式化为表单数据 标签:js对象 uri ret 数据 对象 eve hat UNC 简单的 原文地址:https://www.cnblogs.com/shiazhen/p/12890450.html只适用于 简单的数据转换
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
}
上一篇:53.前端07——css04