- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有查看帖子链接的索引路由。在帖子页面上,帖子都显示了标题链接,但是今天当我写另一篇博文时使用 netflify CMS 我注意到现在帖子页面显示了指向 localhost:8000/blog/blog/{the-post-姓名}。如果我从 url 中删除其中一个“博客”部分,则关联的帖子会正确加载。我只是不明白为什么会发生这种情况,因为该网站之前运行良好。
这个问题似乎与 {node.fields.slug} 错误链接有关
感谢任何帮助!
Gatsby 配置
module.exports = {
siteMetadata: {
// edit below
title: `Front-end Developer`,
author: `Alex Virdee`,
description: `A starter personal blog with styled components, dark mode, and Netlify CMS.`,
siteUrl: `https://hungry-bassi-27b875.netlify.app/`,
social: {
twitter: `alex_virdee`,
},
},
plugins: [
`gatsby-plugin-netlify-cms`,
`gatsby-plugin-styled-components`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-feed-mdx`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content/blog`,
name: `blog`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content/assets`,
name: `assets`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `img`,
path: `${__dirname}/static`
}
},
{
resolve: `gatsby-plugin-mdx`,
options: {
extensions: [".mdx", ".md"],
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 590,
},
},
{
resolve: `gatsby-remark-responsive-iframe`,
options: {
wrapperStyle: `margin-bottom: 1.0725rem`,
},
},
{
resolve: `gatsby-remark-vscode`,
},
{
resolve: `gatsby-remark-copy-linked-files`,
},
{
resolve: `gatsby-remark-smartypants`,
},
],
plugins: [`gatsby-remark-images`],
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// edit below
// trackingId: `ADD YOUR TRACKING ID HERE`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Gatsby Starter Blog`,
short_name: `GatsbyJS`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#663399`,
display: `minimal-ui`,
// edit below
icon: `content/assets/gatsby-icon.png`,
},
},
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/utils/typography`,
},
},
],
}
Gatsby 节点
const path = require(`path`)
const { createFilePath } = require(`gatsby-source-filesystem`)
exports.createPages = ({ graphql, actions }) => {
const { createPage } = actions
const blogPost = path.resolve(`./src/templates/blog-post.js`)
return graphql(
`
{
allMdx(
sort: { fields: [frontmatter___date], order: DESC }
limit: 1000
) {
edges {
node {
fields {
slug
}
frontmatter {
title
}
}
}
}
}
`
).then(result => {
if (result.errors) {
throw result.errors
}
// Create blog posts pages.
const posts = result.data.allMdx.edges
posts.forEach((post, index) => {
const previous = index === posts.length - 1 ? null : posts[index + 1].node
const next = index === 0 ? null : posts[index - 1].node
createPage({
path: `blog${post.node.fields.slug}`,
component: blogPost,
context: {
slug: post.node.fields.slug,
previous,
next,
},
})
})
return null
})
}
exports.onCreateNode = ({ node, actions, getNode }) => {
const { createNodeField } = actions
if (node.internal.type === `Mdx`) {
const value = createFilePath({ node, getNode })
createNodeField({
name: `slug`,
node,
value,
})
}
}
布局.js
import React from "react"
import { Link } from "gatsby"
import styled from "styled-components"
import { rhythm, scale } from "../utils/typography"
class Layout extends React.Component {
render() {
const { location, title, children } = this.props
const rootPath = `${__PATH_PREFIX__}/`
const blogPath = `${__PATH_PREFIX__}/blog/`
let header
if (location.pathname === rootPath || location.pathname === blogPath) {
header = (
<h1
style={{
...scale(1.4),
marginBottom: rhythm(1.2),
marginTop: 0,
}}
>
<Link
style={{
boxShadow: `none`,
textDecoration: `none`,
color: `inherit`,
}}
to={location.pathname === blogPath ? `/blog/` : `/`}
>
{title}
</Link>
</h1>
)
} else {
header = (
<h3
style={{
fontFamily: `Montserrat, sans-serif`,
marginTop: 0,
}}
>
<Link
style={{
boxShadow: `none`,
textDecoration: `none`,
color: `inherit`,
}}
to={`/blog/`}
>
{title}
</Link>
</h3>
)
}
return (
<Wrapper>
<div
style={{
marginLeft: `auto`,
marginRight: `auto`,
maxWidth: rhythm(24),
padding: `${rhythm(1.5)} ${rhythm(3 / 4)}`,
}}
>
<header>{header}</header>
<main>{children}</main>
</div>
<Footer>
Built by
{` `}
Alex Virdee © {new Date().getFullYear()}
</Footer>
</Wrapper>
)
}
}
const Wrapper = styled.div`
min-height: 100vh;
`
const Footer = styled.footer`
text-align: center;
margin: 24px;
`
export default Layout
显示各个帖子链接的博客页面
import React from "react"
import { Link, graphql } from "gatsby"
import Bio from "../components/bio"
import Layout from "../components/layout"
import SEO from "../components/seo"
import { rhythm } from "../utils/typography"
import Button from "../components/button"
class Blog extends React.Component {
render() {
const { data } = this.props
const siteTitle = data.site.siteMetadata.title
const posts = data.allMdx.edges
return (
<Layout location={this.props.location} title={siteTitle}>
<SEO title="All posts" />
<Bio />
<div style={{ margin: "20px 0 40px" }}>
{posts.map(({ node }) => {
const title = node.frontmatter.title || node.fields.slug
return (
<div key={node.fields.slug}>
<h3
style={{
marginBottom: rhythm(1 / 4),
}}
>
<Link
style={{ boxShadow: `none` }}
to={`blog${node.fields.slug}`}
>
{title}
</Link>
</h3>
<small>{node.frontmatter.date}</small>
<p
dangerouslySetInnerHTML={{
__html: node.frontmatter.description || node.excerpt,
}}
/>
</div>
)
})}
</div>
<Link to="/">
<Button marginTop="15px">Go Home</Button>
</Link>
</Layout>
)
}
}
export default Blog
export const pageQuery = graphql`
query {
site {
siteMetadata {
title
}
}
allMdx(sort: { fields: [frontmatter___date], order: DESC }) {
edges {
node {
excerpt
fields {
slug
}
frontmatter {
date(formatString: "MMMM DD, YYYY")
title
description
}
}
}
}
}
`
最佳答案
在Blog
类你需要一个/
在你的<Link>
组件位于 to={blog${node.fields.slug}}
所以 {/blog${node.fields.slug}}
如果没有它,它将采用相对路径 👍
(我省略了外花括号内的反引号,因为它会破坏堆栈溢出时的格式,但它们应该仍然存在)
关于javascript - Gatsby.js 博客在帖子中附加了两次 '/blog',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62414838/
我正在为 https://ghost.org/ 在本地开发一个主题 我遇到了很多问题。 但是没有日志。我不知道为什么会失败。 是否有任何选项可以在开发时显示日志一个https://ghost.org/
我正在为 https://ghost.org/ 在本地开发一个主题 我遇到了很多问题。 但是没有日志。我不知道为什么会失败。 是否有任何选项可以在开发时显示日志一个https://ghost.org/
app.get("/blogs", function(req, res){ Blog.find({}, function(err, blogs){ if(err){
我正在努力理解将参数传递给网址的两种方式(/blog/12 与 /blog?id=12)之间有什么区别。 在哪些情况下,其中一种优于另一种?对于使用哪一种有任何一般建议吗? 最佳答案 在 /blog?
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 7 年前。 Improve
使用 Ghost 博客 routes.yaml 文件,可以使用 collections block 来创建由某些标签和/或其他数据组成的自定义集合。您还可以告诉此集合使用自定义主题模板,请参阅: ht
我将位于 www.domain.com 的主站点和位于 blog.domain.com 的旧 wordpress 博客合并到一个全新的 Wordpress 安装中。我导出并导入了所有旧博客文章,以便它
模型.py: from django.db import models class Blog(models.Model): title = models.CharField(max_lengt
我认为这很简单,但它似乎不适合我。我把我的 httpd.conf: RewriteCond %{HTTP_HOST} ^blog\.domain\.com [NC] RewriteRule ^(.+)
我已经成功地将 www.my-website/blog.php 重写为 www.my-website/blog 现在,我想对我的 blog-detail.php 页面做进一步的事情 从 www.my-
在最终让我的代码向我的数据库发布一个 URL 友好的标题(供以后用作 SEO 优化的 URL)之后,我现在正在研究如何让我的博客脚本接受所述 URL。 理想情况下,我希望我的 URLS 以类似于堆栈溢
当NPM运行Build My Next.js项目时,我在控制台中收到以下错误:。这一切为什么要发生?
什么 RewriteRule (使用 .htaccess/mod_rewrite )我应该用来重定向 http://example.com/blog/ (带 www 或不带)到 http://blog
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 7年前关闭。 Improve this questi
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8 年前关闭。 Improve this
我有一个博客,我一直在考虑发布一个 XML sitemap对于它,其中将包括索引页面、文件页面和每个单独的博客文章的条目。这是一个坏主意吗?这是一个好(或有用)的想法吗?我对 特别感兴趣elemen
关于我最近经常遇到的问题的快速提问: 很多次我从博客中寻找信息,找到非常有趣和有用的例子,却发现博客作者已经将代码显示为图像.. 没有可用的剪切和粘贴功能,每个人如何处理?在别处查找代码还是全部输入?
您是否认为撰写软件(即拥有博客)和谈论软件(和概念)使您成为更好的程序员? 最佳答案 从统计学上讲是的。您只保留阅读和听到的内容的20%,但保留您教的内容的80%。 通过写一些东西或对其进行教导,您会
我尝试了 blogger.com - 它不支持这种明显的事情L 将图像从我的计算机复制粘贴到我正在编辑的新博客文章中。是否有任何博客网站,这将支持这一点? 最佳答案 另一种选择是将 Blogger 设
我是一名优秀的程序员,十分优秀!