Strapi api不显示图像字段信息

pre*_*ton 4 strapi

我是刚开始使用 Strapi。

我创建了一个“事件”集合类型。

我的事件集合类型具有以下字段(请注意图像字段)

  1. 姓名
  2. 蛞蝓
  3. 场地
  4. 地址
  5. 日期
  6. 时间
  7. 表演者
  8. 描述
  9. 图像

当我访问 http://localhost:1337/api/events 时

我得到以下 json,其中包含图像字段的信息。这是个问题。为什么图像信息不显示?如何让api返回的json中包含图片信息?

{"data":[{"id":1,"attributes":{"name":"Throwback Thursday with DJ Manny Duke","slug":"throwback-thursday-with-dj-manny-duke","venue":"Horizon Club","address":"919 3rd Ave New York, New York(NY), 1002","date":"2022-07-20T02:00:00.000Z","time":"10:00 PM","createdAt":"2022-04-12T02:05:08.246Z","updatedAt":"2022-04-12T02:17:16.760Z","publishedAt":"2022-04-12T02:05:16.192Z","performers":"DJ Manny Duke","description":"Description for the vent of DJ Manny Duke"}},{"id":2,"attributes":{"name":"Boom Dance Festival Experience","slug":"boom-dance-festival-experience","venue":"Blackjacks","address":"123 Lexington","date":"2022-04-25T16:00:00.000Z","time":"8:00 PM","createdAt":"2022-04-12T02:26:32.123Z","updatedAt":"2022-04-12T02:26:33.540Z","publishedAt":"2022-04-12T02:26:33.538Z","performers":"DJ LUKE, DJ BLACKJACK","description":"Whatever Description"}},{"id":3,"attributes":{"name":"Encore Night Boat Party","slug":"encore-night-boat-party","venue":"Encore","address":"12343 New York","date":"2022-11-14T16:00:00.000Z","time":"7:00 PM","createdAt":"2022-04-12T02:28:06.028Z","updatedAt":"2022-04-12T02:28:36.292Z","publishedAt":"2022-04-12T02:28:07.622Z","performers":"BAD BOY BILL","description":"Description of Encore"}}],"meta":{"pagination":{"page":1,"pageSize":25,"pageCount":1,"total":3}}}
Run Code Online (Sandbox Code Playgroud)

Sim*_*ngh 6

如果不填充图像数据,则不会显示图像数据。你需要使用这样的东西http://localhost:1337/api/events?populate=yourImage

替换yourImage为您在 Strapi 中用于图像的属性名称

  • 这个图像字段的数据太多了,我们该如何控制呢? (2认同)