Contentful CMS - getting image

旧城冷巷雨未停 提交于 2019-12-25 18:41:20

问题


How can I get each image for each entries. I have two array. items and includes

ex: items.fields.name = Mark

How can I get the image associated to Mark?


回答1:


If you are using the HTTP REST API directly, you'll need to do the mappings yourself. For example, if you have an image in items[0].fields.image, that will contain an object with a sys property, with details about the kind of entity that is linked (asset or entry) and the id. Then you'll need to look for that in the includes array and match it.

If you use one of the SDKs, that will be done automatically for you.

You can read more about Links here: https://www.contentful.com/developers/docs/concepts/links/



来源:https://stackoverflow.com/questions/34889602/contentful-cms-getting-image

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!