admin管理员组文章数量:1351116
I am trying to retrieve a single entry based on the name custom field of my entry.
I have tried using the JS SDK with various options:
client.getEntry("entryID")
// .where("content_type", "Restaurant")
// .where("fields.name[match]", "RestaurantName")
// .all()
.then(data => console.log('data', data))
.catch(err => console.log('err', err))
But based on the errors back, it's suggesting I can only use .getEntry
and pass in the entry ID.
I also looked at making an HTTP request with axios
but faced a similar issue with only being able to retrieve either a full list of entries or filtered based on the entry ID.
Is there a away I can fetch by `field.name === "Slug" or some other custom field I have added?
I am trying to retrieve a single entry based on the name custom field of my entry.
I have tried using the JS SDK with various options:
client.getEntry("entryID")
// .where("content_type", "Restaurant")
// .where("fields.name[match]", "RestaurantName")
// .all()
.then(data => console.log('data', data))
.catch(err => console.log('err', err))
But based on the errors back, it's suggesting I can only use .getEntry
and pass in the entry ID.
I also looked at making an HTTP request with axios
but faced a similar issue with only being able to retrieve either a full list of entries or filtered based on the entry ID.
Is there a away I can fetch by `field.name === "Slug" or some other custom field I have added?
Share Improve this question edited Jan 20, 2019 at 12:50 Stretch0 asked Jan 20, 2019 at 10:27 Stretch0Stretch0 9,29315 gold badges93 silver badges159 bronze badges1 Answer
Reset to default 8Currently the only way to get an entry using getEntry, is to pass in the sys.id value. We use a single controller anytime that we request anything from Contentful. This allows us to set error messages, transform the data returned into the format we want etc. We added to the controller our own getEntry helper function that can be called by
contentfulController.getEntries({
content_type: 'indexPage',
'fields.slug[match]': slug,
include: 3,
locale: language,
});
Then inside our own getEntry function we grab the first one in the array, and return the object since we always know we will be returning one.
However its important to note that this can cause issues if you have sub strings in the slug. Lets say you have two items with the slugs:
/resource
/resourcelisting
If you query 'fields.slug[match]': '/resource', it will return both items in the results so you should also check which one has the actual slug you want, not part of it.
本文标签: javascriptHow to fetch a single entry from Contentful and query by field valueStack Overflow
版权声明:本文标题:javascript - How to fetch a single entry from Contentful and query by field value? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743881814a2555336.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论