我目前正在展示使用一些技术开发mgwt应用程序。无论如何,在入口点(初始化第一个视图)中调用MGWTPlaceHistoryHandler.handleCurrentHistory方法时,我遇到了这个错误:
com.google.web.bindery.event.shared.UmbrellaException:捕获异常:(String) @ com.google.gwt.user.client.impl.DOMImplStandard :: sinkBitlessEventImpl(Lcom / google / gwt / user / client / Element; Ljava / lang / String;)([JavaScript object(20),string:'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
任何帮助或提示表示赞赏,我在这个问题上遇到了一个小时。提前致谢。
答案 0 :(得分:1)