GWT中Frame问题,setUrl之后发现在frame中并不能得到页面。这是为什么啊。
public class FrameExample implements EntryPoint {
public void onModuleLoad() {
// Make a new frame, and point it at Google.
Frame frame = new Frame("http://www.google.com/");
// Add it to the root panel.
RootPanel.get().add(frame);
}
}
这个肯定可以得到的,但是我用了一个比较长的url就得不到页面内容了。显示它加载了一段时间,然后就出现空页面,高手指点一下吧!!!!