gpt4 book ai didi

javascript - 如何转到 gatsby 中的上一页(history.goBack)

转载 作者:行者123 更新时间:2023-11-29 18:42:30 25 4
gpt4 key购买 nike

我正在研究 gatsby。我需要像以前使用 reactjs 那样返回到上一页/链接。

<a onClick={() => this.props.history.goBack}>
<button type="button" className="close_tab">
<img src={Close} alt="" />
</button>
</a>

我如何使用 gatsby 做到这一点?

最佳答案

使用navigate(-1):

import React from "react";
import { navigate } from "gatsby";

export default function GoBack() {
return (
<Button onClick={() => navigate(-1)}>
Go Back
</Button>
);
}

关于javascript - 如何转到 gatsby 中的上一页(history.goBack),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55953185/

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