我想将以下 JSON 数据转换为 x-www-form-urlencoded 格式。如何在 JavaScript 中做到这一点?或者任何在线转换器?
stripe_data: {
"type" : "card",
"billing_details" : {
"name" : "sample test",
"email" : "sampletest@gmail.com",
"phone" : "+61 76 253 4125",
"address" : {
"state" : "Melborne",
"country" : "Australia"
}
},
"card" : {
"number" : "4242424242424242",
"cvc" : "242",
"exp_month" : "01",
"exp_year" : "22"
}
}
我搜索了谷歌,但我没有找到这种类型的数据(对象到对象)的任何解决方案。