如何在nodejs中编写复杂的json格式

时间:2018-10-09 07:44:57

标签: node.js json

我有一个Json结构,我想使用Nodejs作为请求参数来创建它。我在这里写json格式。

{ 
  "accounts": [
    {
        "address": {
        "street_address": "string",
        "locality": "string",
        "region": "string",
        "country": "string",
        "postal_code": "string",
        "phone": "string"
      },
       "admin_user": {
        "email_address": "",
        "first_name": "test",
        "last_name": "team",
        "job_title": ""
      },
      "name": "testAccount",
      "plan_id": ",
      "website": "",
      "reseller_id": "",
      "customer_id": "",
      "paid_seats": ""
    }
  ]
}

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

这是正确的。您只错过了“ plain_id”值中的双引号。

正确:

"name": "testAccount",
  "plan_id": "",
  "website": "",
  "reseller_id": "",
  "customer_id": "",
  "paid_seats": ""