gpt4 book ai didi

javascript - MDX 中的 Gatsby 静态图像(gatsby-plugin-image)

转载 作者:行者123 更新时间:2023-12-04 14:07:39 25 4
gpt4 key购买 nike

最近我开始使用 Gatsby,现在我正在尝试使用 MDX,在我的 MDX 文件中,我可以通过 GraphQL 使用 Gatsby Image,但我想使用来自 gatsby-plugin-image 的静态图像,但我遇到了错误像这样:

react_devtools_backend.js:2557 Image not loadedhttps://images.unsplash.com/photo-1597305877032-0668b3c6413a?w=1300


当我尝试在 .tsx 中实现此图像时,它可以工作,所以我想知道它是否可能。
Gatsby 配置
 "gatsby-remark-images",
{
resolve: "gatsby-plugin-mdx",
options: {
defaultLayouts: {
default: require.resolve("./src/components/common/Layout.tsx")
},
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-images`,
options: {},
},
],
}
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: `${__dirname}/src/images/`,
},
__key: "images",
},
然后在 test.mdx 中,我尝试像这样使用静态图像:
<StaticImage
src={'https://images.unsplash.com/photo-1597305877032-0668b3c6413a?w=1300'}
alt={''}
width={3840}
height={1000}
layout={'constrained'}
/>

最佳答案

您不能使用 gatsby-plugin-image直接在 MDX 文档中。 This post on the Gatsby blog解释了如何通过 Frontmatter 传入图像引用 Prop 来间接使用它。
就个人而言,我已经能够这样做:
此示例仅加载本地镜像,请参阅博客文章了解如何引用远程图像,因为它更复杂。
模板组件

import React from "react";
import { graphql } from "gatsby";
import { MDXRenderer } from "gatsby-plugin-mdx";
import Layout from "../components/layout";

const Game = ({ data }) => {
const { mdx } = data;
const { frontmatter, body } = mdx;
return (
<Layout title={frontmatter.title}>
<span className="date">{frontmatter.date}</span>
<MDXRenderer localImages={frontmatter.embeddedImagesLocal}>
{body}
</MDXRenderer>
</Layout>
);
};

export const pageQuery = graphql`
query($slug: String!) {
mdx(slug: { eq: $slug }) {
slug
body
frontmatter {
date(formatString: "MMMM DD, YYYY")
title
embeddedImagesLocal {
childImageSharp {
gatsbyImageData
}
}
}
}
}
`;

export default Game;
MDX 文档
---
title: Death Stranding
author: Hideo Kojima
date: 2021-05-06
template: game
embeddedImagesLocal:
- '../images/20210513035720_1.jpg'
---

import { getImage, GatsbyImage } from 'gatsby-plugin-image';

A great game from Hideo Kojima.

<GatsbyImage alt='Sam in a destroyed mall' image={getImage(props.localImages[0])} />

关于javascript - MDX 中的 Gatsby 静态图像(gatsby-plugin-image),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67227977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com