未在GWT中加载页面

未在GWT中加载页面,gwt,Gwt,我正在使用活动和场所开发我的应用程序。当我点击左边的链接时,我的页面被加载,我把值放在字段中。在我输入这些值之后,我向服务器发送一个RPC,并获得响应。这也显示了。现在的问题是,即使我点击左边的链接,我也会再次得到结果页面。我没有得到输入页面 执行代码 @UiHandler(“entInvoiceCompare”) 单击提交时作废(单击事件e){ GWT.log(“前往企业比较地点”); //goTo(新企业InvoiceCompareViewPlace()); NewEBRM.getClien

我正在使用活动和场所开发我的应用程序。当我点击左边的链接时,我的页面被加载,我把值放在字段中。在我输入这些值之后,我向服务器发送一个RPC,并获得响应。这也显示了。现在的问题是,即使我点击左边的链接,我也会再次得到结果页面。我没有得到输入页面

执行代码

@UiHandler(“entInvoiceCompare”)
单击提交时作废(单击事件e){
GWT.log(“前往企业比较地点”);
//goTo(新企业InvoiceCompareViewPlace());
NewEBRM.getClientFactory().getPlaceController().goTo(新企业InvoiceCompareViewPlace());
}
地点

公共类EnterpriseInvoiceCompareViewPlace扩展位置{
公共企业InvoiceCompareViewPlace(){
GWT.log(“EnterpriseInvoiceCompareViewPlace:constructor”);
}
公共静态类标记器实现PlaceTokenizer{
@凌驾
公共字符串getToken(EnterpriseInvoiceCompareViewPlace{
log(“EnterpriseInvoiceCompareViewPlace:getToken:call”);
返回“EntInvoiceCompare”;
}
@凌驾
公共企业InvoiceCompareViewPlace getPlace(字符串标记){
log(“EnterpriseInvoiceCompareViewPlace:getPlace:call”);
返回新的EnterpriseInvoiceCompareViewPlace();
}
}
}
活动

@覆盖
public void start(AcceptsOneWidget containerWidget、EventBus和EventBus){
//TODO自动生成的方法存根
日志(“EnterpriseInvoiceCompareActivity:start:starting活动”);
EnterpriseInvoiceCompareView entInvoiceCompareView=clientFactory.getEnterpriseInvoiceCompareView();
entInvoiceCompareView.setPresenter(此文件);
containerWidget.setWidget(entInvoiceCompareView.asWidget());
日志(“EnterpriseInvoiceCompareActivity:开始:结束活动”);
}


如果我们看不到你的代码,有人能帮你什么吗?@Anrei..我编辑了这篇文章。链接呢?你在上面设置了ClickHandler吗?是的,这只是在链接上:问题是,在我第一次提交请求@UiHandler(“entInvoiceCompare”)void onClickSubmit(ClickEvent e)之后,我再也看不到输入页面了{GWT.log(“转到企业比较位置”);//listener.goTo(新建EnterpriseInvoiceCompareViewPlace());NewEBRM.getClientFactory().getPlaceController().goTo(新建EnterpriseInvoiceCompareViewPlace());}单击此链接时是否收到日志消息?如果收到,则ActivityMapper或ClientFactoryImpl类中可能存在问题。