MGWT[ERROR]正在尝试接收未知事件类型webkitAnimationEnd



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

com.google.web.bindery.event.shared.UnbellaException:捕获到异常:(字符串)@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

如果有任何帮助或建议,我都会很感激,因为这个问题我被困了好几个小时。提前谢谢。

[SOLVED]-EVER EVER在旧版本的GWT[22.5.1]上使用最新的MGWT;)

最新更新