我正在使用 gatsby-plugin-react-i18next 来翻译网站。我的问题是,我是否必须将下面发布的语言查询添加到我想要翻译的每个页面中?有更好的办法吗?
// /pages/index.js
}
export const query = graphql`
query($language: String!) {
locales: allLocale(filter: { language: { eq: $language } }) {
edges {
node {
ns
data
language
}
}
}
}
`;
我查看了 github 上提供的示例,查询出现在每个页面中。 https://github.com/microapps/gatsby-plugin-react-i18next/tree/master/example/src/pages
是的,当控制台中显示错误时,它表示您必须将其放入每个页面中