如何在邮递员的POST请求中传递数据数组?

问题描述 投票:0回答:1

我已创建POST api我需要在邮递员中传递以下数据,如何传递此数据

{
  "orderData": {
    "customer_id": 2,
    "products": [
      {
        "product_id": 1,
        "qty": 1
      },
     {
        "product_id": 13,
        "qty": 1
      }
    ],
    "shipping_method": "flatrate_flatrate",
    "payment_method": "checkmo"
  }
}

我试图通过下方但显示错误enter image description here

谁能帮我这个忙

api post postman
1个回答
1
投票

enter image description here

将要在Body选项卡中发布的数据添加为raw突出显示的数据。

© www.soinside.com 2019 - 2024. All rights reserved.