我正在用 Gatsby.js 开发一个博客
每个帖子都是一个 YAML 文件,其中有一个画廊的数组,如下所示:
gallery:
-'/uploads/image1.jpg'
-'/uploads/image2.jpg'
-'/uploads/image3.jpg'
-'/uploads/image4.jpg'
-'/uploads/image5.jpg'
在帖子中我有这样的东西:
const images = data.postData.frontmatter.gallery;
return (
{images.map((image, index) => {
return (
<img src={image}/>
)
}
)};
export const query = graphql`
query PostData($slug: String!) {
postData: markdownRemark(fields: {slug: {eq: $slug}}) {
frontmatter {
gallery
}
}
}
`;
但是图像没有显示出来,因为它们在构建时没有被处理并放在静态文件夹中。
据我了解,插件“gatsby-plugin-sharp”并没有转换在 YAML 文件的数组中找到的图像,但是当它只是一个图像时它会......
(在某些帖子中有一个这样的字段
main-image: 'path/to/the/image'
然后我可以像这样使用graphql获取:
main-image {
fluid {
src
}
}
}
而对于 'gallery' 数组,不会创建 'fluid' 节点。)
我希望这是有道理的,我意识到我对有些事情有点困惑,我希望你能帮助我理解一些事情。
谢谢,
米
编辑
感谢@Z,我前进了一点。兹拉捷夫。
我将它插入到 gatsby-node.js 中:
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions;
const typeDefs = `
type MarkdownRemark
implements Node {
frontmatter: Frontmatter
}
type Frontmatter {
gallery: [File]
}
`;
createTypes(typeDefs);
};
现在为画廊数组中的每个图像创建节点。
但是,查询我得到空的图像......
这里有一些细节:
YAML 文件:
---
date: 2019-11-06T13:47:07.000+00:00
title: Cool Project
main_picture: "/uploads/simon-matzinger-Gpck1WkgxIk-unsplash.jpg"
gallery:
- "/uploads/PROEGELHOEF.jpg"
- "/uploads/swapnil-dwivedi-N2IJ31xZ_ks-unsplash-1.jpg"
- "/uploads/swapnil-dwivedi-N2IJ31xZ_ks-unsplash.jpg"
- "/uploads/simon-matzinger-Gpck1WkgxIk-unsplash.jpg"
---
这里是 GraphQl 查询:
query MyQuery {
allMarkdownRemark(filter: {id: {eq: "af697225-a842-545a-b5e1-4a4bcb0baf87"}}) {
edges {
node {
frontmatter {
title
gallery {
childImageSharp {
fluid {
src
}
}
}
}
}
}
}
}
这里是数据响应:
{
"data": {
"allMarkdownRemark": {
"edges": [
{
"node": {
"frontmatter": {
"title": "Cool Project",
"gallery": [
{
"childImageSharp": null
},
{
"childImageSharp": null
},
{
"childImageSharp": null
},
{
"childImageSharp": null
}
]
}
}
}
]
}
}
}
我想我仍然缺少一些东西......