在Gatsby Blog中的URL路径中附加%20

问题描述 投票:0回答:1

我已经使用Gatsby的入门模板建立了博客。现在,当我打开文章时,它显示的URL是-http://localhost:8000/JavaScript:%20Behind%20The%20Scenes/。我查找了this answer并更改了path属性,但是该页面无法加载,它只显示了一个具有相同URL的空页面。我不知道为什么在路径中附加%20

:路径实际上是文件夹名称。例如,在目录/content/blog/JavaScript:Behind The Scenes/index.md中,URL中的路径实际上是文件夹名称。我不知道为什么路径应该是我在该文件夹的index.md中编写的标题。

index.md

---
title: 'The Execution Context'
date: '2020-02-16'
category: "JavaScript"
---

Blog Content..............

gatsby-node.js

const path = require(`path`)
const { createFilePath } = require(`gatsby-source-filesystem`)

exports.createPages = ({ graphql, actions }) => {
  const { createPage } = actions

  const blogPostTemplate = path.resolve(`./src/templates/blog-post.js`)

  return graphql(
    `
      {
        allMarkdownRemark(
          sort: { fields: [frontmatter___date], order: DESC }
          limit: 1000
        ) {
          edges {
            node {
              fields {
                slug
              }
              frontmatter {
                title
                category
              }
            }
          }
        }
      }
    `
  ).then(result => {
    if (result.errors) {
      throw result.errors
    }

    // Create blog posts pages.
    const posts = result.data.allMarkdownRemark.edges.filter(
      ({ node }) => !!node.frontmatter.category
    )

    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: post.node.fields.slug,
        component: blogPostTemplate,
        context: {
          slug: post.node.fields.slug,
          previous,
          next,
        },
      })
    })
  })
}

exports.onCreateNode = ({ node, actions, getNode }) => {
  const { createNodeField } = actions

  if (node.internal.type === `MarkdownRemark`) {
    const value = createFilePath({ node, getNode })

    createNodeField({
      name: `slug`,
      node,
      value,
    })
  }
}
“当我单击它们时,它显示找不到页面。它显示的奇怪网址是:https://github.com/https://github.com/myGithubNamehttps://twitter.com/https://twitter.com/myTwitterName

我检查了它的位置并找到了:

gatsby-meta-config.js

module.exports = { title: `My Blog`, description: `Blog posted about ...`, author: `myName`, introduction: `I explain with words and code.`, siteUrl: `https://gatsby-starter-bee.netlify.com`, // Your blog site url social: { twitter: `https://twitter.com/myTwitterName`, // Your Twitter account github: `https://github.com/myGithubName`, medium: ``, facebook: `` }, icon: `content/assets/profile.jpeg`, // Add your favicon keywords: [`blog`], comment: { disqusShortName: '', // Your disqus-short-name. check disqus.com. utterances: 'JaeYeopHan/gatsby-starter-bee', // Your repository for archive comment }, configs: { countOfInitialPost: 10, // Config your initial count of post }, sponsor: { buyMeACoffeeId: 'jbee', }, share: { facebookAppId: '', // Add facebookAppId for using facebook share feature v3.2 }, ga: '', // Add your google analytics tranking ID }
gatsby-meta-config.js中的链接似乎正确。
javascript url gatsby slug
1个回答
0
投票
我不知道为什么在路径中附加%20。

%20是URL内空格的HTML encoding。您的网址中不能包含空格,因此默认情况下HTML编码会将其转义。

该URL实际上是文件夹名称。我不知道为什么路径应该是我在该文件夹的index.md中编写的标题。

您未对gatsby-node.js中的子弹进行任何格式化:

createNodeField({ name: `slug`, node, value, })

[不格式化子段,您的url默认为项目内部的路径。

我的建议:不要格式化子弹。从文件夹路径中删除空格,您将获得一个不错的URL:/content/blog/javascript-behind-the-scenes/index.md。 Google还建议您使用连字符-。拥有这样的URL在SEO中排名更高。

[此外,我在Github和Twitter链接上遇到了一些问题。当我单击它们时,它显示找不到页面。它显示的奇怪网址是:https://github.com/https://github.com/myGithubName https://twitter.com/https://twitter.com/myTwitterName

仅在gatsby-config.js中提供您社交网络的用户名:

social: { twitter: `myTwitterName`, // remove everything before your username github: `myGithubName`, // remove everything before your username medium: ``, facebook: `` },

© www.soinside.com 2019 - 2024. All rights reserved.