gpt4 book ai didi

reactjs - 在 Gatsby、GraphQL 和 Sanity 中使用 _raw 和正常数据进行推理

转载 作者:行者123 更新时间:2023-12-02 16:45:31 25 4
gpt4 key购买 nike

我刚开始使用 GatsbySanity headless CMS。

在大多数情况下,它非常简单;但是了解通过 GraphQL 查询数据的最佳实践仍然困扰着我。我目前的做法是在 GraphQL Playground 上疯狂地点击我的 CMS 结构并找到我想要的东西。这行得通,但这种方法缺乏统一性让我感到不安。

例如,如果我想要 CMS 中某处的主图,我需要执行以下操作:

query SomePageQuery($id: String) {
sanitySomePage(id: { eq: $id }) {
id
heroImage {
asset {
fluid(maxWidth: 1500) {
...GatsbySanityImageFluid
}
}
}
}
}

但如果我想要一些 PortableText block 然后我需要查询任何类型的相应 _raw 字段。所以,如果我的类型是 introText,Gatsby 也会提供一个 _rawIntroText。我只能从此 _raw 版本的数据中获取完整的 PortableText。像这样:

query SomePageQuery($id: String) {
sanitySomePage(id: { eq: $id }) {
id
_rawIntroText
}
}

似乎对于某些数据您可以使用[Type],有时您可以使用_raw[Type ]

关于为什么会出现这种情况的文档并不多。我不确定这是通过 Sanity 还是 Gatsby 强制执行的。

我想我的问题是,为什么 _raw[Anything] 存在于 Gatsby 和/或 Sanity 世界中,以及人们如何决定使用哪个(除了内部的反复试验之外) GraphQL Playground 和运行时)?

最佳答案

这来自 Sanity 构建和维护的 gatsby-source-sanity 插件。希望来自 Sanity 的人可以提供更多上下文,但实际上 _raw[FieldName] 条目返回字段的原始 JSON 数据。无前缀字段(例如 fieldName)可能不是您想要的——它只包含有关数据的一些元数据。

我倾向于提取 _raw[FieldName] 数据,然后将其直接传递到 @sanity/block-content-to-react 组件中,如下所示:

import React from "react"
import { graphql } from "gatsby"
import SanityBlockContent from "@sanity/block-content-to-react"

export default ({ data: { page } }) => (
<SanityBlockContent
blocks={page.textContent}
projectId={process.env.GATSBY_SANITY_PROJECT_ID}
dataset={process.env.GATSBY_SANITY_DATASET}
/>
)

export const query = graphql`
query SomePageQuery($id: String) {
page: sanitySomePage(id: { eq: $id }) {
textContent: _rawTextContent
}
}
`

请注意,我使用 GraphQL 别名继续在我的组件中将字段称为 textContent,而不是将组件耦合到此 GraphQL 模式的细节。

您不需要为 Sanity 图像使用 Gatsby Image,因为它们有自己的图像转换管道。相反,您可以只获取 asset { _id },然后像这样使用 @sanity/client 来生成图像 url:

import sanityClient from "@sanity/client"
import sanityImageUrl from "@sanity/image-url"

const client = sanityClient({
dataset: process.env.GATSBY_SANITY_DATASET,
projectId: process.env.GATSBY_SANITY_PROJECT_ID,
useCdn: true,
})

const builder = sanityImageUrl(client)

builder.image({ _id: "..." }).width(400).dpr(2).url()

关于reactjs - 在 Gatsby、GraphQL 和 Sanity 中使用 _raw 和正常数据进行推理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60623886/

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