不要在GWT中更改地点的网址

时间:2017-07-04 08:32:39

标签: java gwt

我对GWT有疑问。在GWT中,当我导航到新的地方时,它会在浏览器栏中更改URL地址。那么有什么解决方案可以在转到新地方时不更改URL。 goTo方法的代码示例如下。

@Override
public void onFailure(Throwable caught) {
      super.onFailure(caught);
      ForbiddenPlace forbiddenPlace = new ForbiddenPlace();
      goTo(forbiddenPlace);
}

1 个答案:

答案 0 :(得分:0)

如果您使用PlaceController.goTo方法,则会在eventBus中触发PlaceChangeEventPlaceHistoryHandlerActivityManager将使用此方法。 PlaceHistoryHandler正在更新网址Historian),因此...如果您只想显示地点而不更新网址(Historian),您可以手动提供ActivityManager使用ActivityManager.onPlaceChange(new PlaceChangeEvent(new ForbiddenPlace()))的地方。