无法从Moltin API获取文件以在主要产品图片下显示
使用此仓库:https://github.com/moltin/gatsby-demo-store并进行更新 @ moltin / gatsby-source-moltin到1.3.1我曾尝试扩展产品 然后根据Moltin API文档包含节点关系的架构 在一个新组件中引用了此元素,但未渲染其他图像。
看一下其他实现,即使用 缩略图,可能会显示可单击的微小紫色细条,但没有图像。该商店使用Shopify和localFile存储进行图像渲染,因此该用例不适用。
```
import React, { useContext, useEffect, useReducer, useState } from 'react'
import { graphql, withPrefix } from 'gatsby'
import SEO from '../components/SEO'
import Photo from '../components/Photo'
import Badge from '../components/Badge'
import AddToCart from '../components/AddToCart'
import { Shopkit } from '../shopkit'
import Img from 'gatsby-image'
const {
meta: { display_price }
} = product
return (
<React.Fragment>
<SEO
type="product"
title={product.meta_title || product.name}
description={product.meta_description || product.description}
image={withPrefix(product.mainImage.childImageSharp.fixed.src)}
/>
<div className="flex flex-wrap md:bg-grey-light">
<div className="py-2 md:py-5 md:px-5 w-full lg:w-1/2">
<div className="sticky pin-t">
<Photo
src={product.mainImage}
alt={product.main_image_alt_text || product.name}
/>
<Img
src={product.relationships.files.data.id}
alt=""
/>
</div>
</div>
......
.....
....
</React.Fragment>
)
}
export const query = graphql`
query($id: String!) {
product: moltinProduct(id: { eq: $id }) {
id
slug
name
description
sku
mainImage {
childImageSharp {
fixed(width: 560) {
...GatsbyImageSharpFixed
}
}
publicURL
}
meta {
display_price {
without_tax {
formatted
}
}
}
manage_stock
meta_title
meta_description
on_sale
bulb
bulb_qty
material
finish
max_watt
relationships {
main_image {
data {
id
}
}
files {
data {
type
id
}
}
}
`
export default ProductPage
```
想在主要产品图片下方显示小缩略图。安慰 使用Img组件时出现错误消息:未捕获的TypeError:无法读取 属性“ src”未定义。
答案 0 :(得分:0)
gatsby-source-moltin
向产品架构添加一个images
字段,您可以像这样查询:
images {
childImageSharp {
fluid(maxWidth: 300) {
...GatsbyImageSharpFluid
}
}
}
我在CodeSandbox上举了一个例子。