我对GWT有疑问。在GWT中,当我导航到新的地方时,它会在浏览器栏中更改URL地址。那么有什么解决方案可以在转到新地方时不更改URL。 goTo方法的代码示例如下。
@Override
public void onFailure(Throwable caught) {
super.onFailure(caught);
ForbiddenPlace forbiddenPlace = new ForbiddenPlace();
goTo(forbiddenPlace);
}
答案 0 :(得分:0)
如果您使用PlaceController.goTo
方法,则会在eventBus中触发PlaceChangeEvent
,PlaceHistoryHandler
和ActivityManager
将使用此方法。 PlaceHistoryHandler
正在更新网址Historian
),因此...如果您只想显示地点而不更新网址(Historian
),您可以手动提供ActivityManager
使用ActivityManager.onPlaceChange(new PlaceChangeEvent(new ForbiddenPlace()))
的地方。