如何使用sanity.io添加和显示多个图像



我试图在我的健全性项目中添加更多的图像,但没有任何结果。我已经为此添加了一个架构。

{
name: 'gallery',
title: 'Gallery',
type: 'array',
of: [{ type: 'image', 
options: {
hotspot: true,
},}]
}

但当我console.log上传更多图像的帖子的结果时,我只得到_ref和_type,而没有像mainImage中那样的URL。

如何显示多个图像?感谢

要获得url,您需要获取如下数据:

client.fetch(`*[_type == 'post']{
_id,
title,
gallery[]{
asset->{
url
}
}]
}`)......

相关内容

  • 没有找到相关文章

最新更新