作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在使用 Gatsby 创建共享按钮,并希望根据当前 url 共享内容,这取决于环境和当前页面。使用 GoHugo,可以使用 {{ .Permalink }}
调用它。 .有谁知道如何用 Gatsby 做到这一点?
我有一个 ShareButtons 组件,它是 BlogPostTemplate 的子组件。
最佳答案
您可以使用 useLocation
喜欢 p.boiko建议如下:
import * as React from 'react';
import { useLocation } from '@reach/router';
const UserTheme = () => {
const location = useLocation();
console.log(location)
};
输出将是:
{pathname: "/", search: "", hash: "", href: "http://localhost:8000/", origin: "http://localhost:8000", …}
关于gatsby - 如何在 Gatsby 中获取当前 url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50976388/
我是一名优秀的程序员,十分优秀!