Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我实现了一个 MVP 应用程序。后退按钮工作正常。我想以编程方式回到以前的地方。我该怎么做?
我正在寻找类似的东西:
clientFactory.getPlaceController().goBack();
谢谢。
您可以简单地使用本机 GWT 历史记录:
History.back();
如果您使用的是 PlaceManager,您可以在 PlaceManager 的实例上调用 navigateBack()。