标签: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对象 uri ret 数据 对象 eve hat UNC 简单的
原文地址:https://www.cnblogs.com/shiazhen/p/12890450.html