如何 POST 阵列到 Strapi
how to POST array to Strapi
这是我的 API 获取请求:
{
"data": [
{
"id": 2,
"attributes": {
"title": "something",
"game": "default",
"players": "static",
}
}
],
}
我想将 "Players"
设置为如下数组:
"attributes": {
"title": "23123",
"game": "1231",
"players": [
"1" : "static1",
"2" : "static2",
"3" : static3",
],
}
如何制作这个数组?
您需要从 content-type 生成器创建一个名为“Player”的组件,然后将此组件添加到您的主要实体类型中。
这是我的 API 获取请求:
{
"data": [
{
"id": 2,
"attributes": {
"title": "something",
"game": "default",
"players": "static",
}
}
],
}
我想将 "Players"
设置为如下数组:
"attributes": {
"title": "23123",
"game": "1231",
"players": [
"1" : "static1",
"2" : "static2",
"3" : static3",
],
}
如何制作这个数组?
您需要从 content-type 生成器创建一个名为“Player”的组件,然后将此组件添加到您的主要实体类型中。