gpt4 book ai didi

java - 如何获取GWT中最后一个历史记录 token

转载 作者:太空宇宙 更新时间:2023-11-04 14:29:41 25 4
gpt4 key购买 nike

我想获取我的导航的上一个 token 。

例如,在此页面中:

http://www.example.com/com.example.gwt.HistoryExample/HistoryExample.html#page1

我被重定向到这个新页面:

http://www.example.com/com.example.gwt.HistoryExample/HistoryExample.html#page2

现在,如果我想要当前的 token ,我可以通过这种方式轻松获取:

字符串 currentPlace = placeManager.getCurrentPlaceRequest().getNameToken();

currentPlace 将收到“page2”,但我不知道如何获取前一个 token “page1”

最佳答案

您可以将此代码添加到例如 onModuleLoad() 方法中或添加到在应用程序开始时创建的类中,当然之后不会销毁

private Place previousPlace;
private Place currentPlace;

eventBus.addHandler(PlaceChangeEvent.TYPE, new PlaceChangeEvent.Handler() {

public void onPlaceChange(PlaceChangeEvent event) {

previousPlace = currentPlace;
currentPlace = event.getNewPlace();
}
});

关于java - 如何获取GWT中最后一个历史记录 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26283917/

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