你好
我在其中一个入口点类中编写了代码:
if(RootPanel.get("fb-root") != null)
form = new BloodDonorForm(Constants.INSERT, null, Constants.FACEBOOK, Constants.BLOOD_DONOR_REGISTER_FORM);
else
form = new BloodDonorForm(Constants.INSERT, null, null, Constants.BLOOD_DONOR_REGISTER_FORM);
这在某个时候肯定可以正常工作(不记得我上次检查的时候)。但是现在当我在启用了 firebug 的 Firefox 中运行该页面时,我看到如下消息:
The "fb-root" div has not been created, auto-creating
那么,如果它不存在,为什么要这样做呢?我确信我过去已经对此进行了测试,并且之前没有发生这种情况。