论坛首页 Web前端技术论坛

GWT的HTTPRequest的应该怎么用?

浏览 3655 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2007-12-19  
GWT
1.GWT的HTTPRequest的应该怎么用
if (!HTTPRequest.asyncGet("http://www.kookge.com/intl/zh_CN/downfile/index.jsp", new ResponseTextHandler() {
  public void onCompletion(String inResponseText) {
  System.out.println(inResponseText);
  }})) {
   // handle error here
System.out.println("error");
}

是这样吗,为什么得不到网页的内容呢?
post的方法应该如何调用,那位给个例子看看?

还有一个问题,我的工程用到了mygwt的ExpandBar的控件,所有的控件设置宽度尺寸都是100%,我发现ExpandItem里面的Container的宽度变大之后就不能随窗口宽度缩小,不知道是怎么回事,是bug吗?

ps:
private native String linkUrl(String strUrl)
/*-{
try {
$wnd.xmlHttpRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e1) {
try {
$wnd.xmlHttpRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e2) {
$wnd.xmlHttpRequest = false;
}
}
if (!$wnd.xmlHttpRequest) {
$wnd.xmlHttpRequest = new XMLHttpRequest();
}
$wnd.xmlHttpRequest.open("GET", strUrl, true);
        $wnd.xmlHttpRequest.send(null);
return $wnd.xmlHttpRequest.responseText;
}-*/;
这段jsni的代码有什么问题吗,为什么在调试的提示没有权限>?
   发表时间:2007-12-26  
看样子你使用HTTPRequest进行了跨域访问,如果在ie6中(默认配置)应该有提示,在ie7中(默认配置,但具体改什么位置我也不清楚)就完全屏蔽了,不能访问
1 请登录后投票
论坛首页 Web前端技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics