0

我想将以下 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"
          }
        }

我搜索了谷歌,但我没有找到这种类型的数据(对象到对象)的任何解决方案。

4

1 回答 1

0

我使用名为 .js 的 JavaScript 包解决了上述问题qs。我在 Nuxt.js 工作并使用 npm,所以我通过这一点给出答案首先安装npm run qs 在你的代码中使用然后导入 qs,import qs from 'qs' 然后使用你想要的任何地方,比如qs.stringify(data)// 数据 - JSON 格式

于 2020-08-29T11:36:59.390 回答