POST关系邮递员

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

我尝试使用 POSTMAN 将数据插入我的 Strapi 集合,但它只插入没有关系的数据。

{
  "data": {
    "date": "2023-02-20T08:29:36.529Z",
    "class": 1,   // is an id from relation
    "absen": [
      {
        "id": 1,
        "student_name": {
          "data": {
            "id": 1, // is an id from relation
            "attributes": {}
          }
        },
        "information": "attend"
      }
    ]
  }
}

我在这里使用ID,我如何使用POSTMAN插入这个关系数据?

post insert postman strapi
© www.soinside.com 2019 - 2024. All rights reserved.