MGWTPlaceHistoryHandler

MGWTPlaceHistoryHandler

我目前正在使用展示中的一些技术来开发mgwt应用程序。无论如何,在入口点(第一个视图的初始化)中调用MGWTPlaceHistoryHandler.handleCurrentHistory方法时,在一行上我遇到了以下错误:


com.google.web.bindery.event.shared.UmbrellaException:捕获到异常:(字符串)
@ com.google.gwt.user.client.impl.DOMImplStandard :: sinkBitlessEventImpl(Lcom / google / gwt / user / client / Element; Ljava / lang / String;)([JavaScript对象(20),字符串:'webkitAnimationEnd' ]):尝试接收未知事件类型webkitAnimationEnd


我不知道是什么原因导致这种类型的错误。异常消息有点含糊-我没有使用任何影响目标DOM和JS代码的自定义本机方法。

有任何想法吗 ?我对此一无所知:(

PS:发生此问题的代码的一部分:

AppPlaceHistoryMapper historyMapper= GWT.create(AppPlaceHistoryMapper.class);
AppHistoryObserver historyObserver= new  AppHistoryObserver();
MGWTPlaceHistoryHandler historyHandler= new  MGWTPlaceHistoryHandler(historyMapper,historyObserver);
historyHandler.register(clientFactory.getPlaceController(),clientFactory.getEventBus(),new  MyDefaultPlace());
historyHandler.handleCurrentHistory(); //Exception thrown here


任何帮助或提示的赞赏,我在这个问题上停留了一个小时。提前致谢。

最佳答案

[已解决]-永远不要,永远不要在较旧版本的GWT [2.5.1]上使用最新的MGWT;)

07-24 13:28