我正在尝试使用populate
Flamelinkget()
查询中的属性来填充图像,因为我注意到设置populate: true
会减慢请求的响应时间。
我正在尝试这个:
const content = await flamelinkApp.content.get({
schemaKey: page,
populate: [{
field: "images",
sizes: {
width: 1920,
height: 999,
quality: 1,
},
}],
});
但是,所有图像仅返回其 ID。理想情况下,我只希望它们url
返回 - 因此,该sizes
属性可能不是我所追求的,但我现在只希望在使用填充时返回一些东西。
作为参考,这是我第一次阅读有关使用 populate 属性加速查询的地方:https ://github.com/flamelink/flamelink-js-sdk/issues/104#issuecomment-536525185
以下是有关get()
查询本身的信息:https ://flamelink.github.io/flamelink/#/content?id=get