簡單的問題。我需要在GWT 中發出GET請求,該請求會重定向到新頁面,但我無法找到正確的API。GWT - 製作GET請求
有沒有?我應該自己簡單地形成網址,然後做Window.Location.replace?
(原因是,我想我的搜索頁面可鏈接)
感謝。
(並沒有使我的問題不夠清楚,最初對不起)
簡單的問題。我需要在GWT 中發出GET請求,該請求會重定向到新頁面,但我無法找到正確的API。GWT - 製作GET請求
有沒有?我應該自己簡單地形成網址,然後做Window.Location.replace?
(原因是,我想我的搜索頁面可鏈接)
感謝。
(並沒有使我的問題不夠清楚,最初對不起)
使用Window.Location.replace完成重定向到新頁面。
應使用歷史記錄機制處理多個頁面。
public class GetExample implements EntryPoint {
public static final int STATUS_CODE_OK = 200;
public static void doGet(String url) {
RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, url);
try {
Request response = builder.sendRequest(null, new RequestCallback() {
public void onError(Request request, Throwable exception) {
// Code omitted for clarity
}
public void onResponseReceived(Request request, Response response) {
// Code omitted for clarity
}
});
} catch (RequestException e) {
// Code omitted for clarity
}
}
public void onModuleLoad() {
doGet("/");
}
}
GWT不使用常規的servlet禁止你。
您可以在 'web.xml中' 文件中聲明一個servlet:
<servlet>
<servlet-name>myServlet</servlet-name>
<servlet-class>org.myapp.server.MyServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>myServlet</servlet-name>
<url-pattern>/myurl/*</url-pattern>
</servlet-mapping>
,然後你可以實現你的servlet:
public class MyServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws
IOException {
// your code here
}
}
如果打開一個單獨的窗口,它是易:
Window.open(url, windowName, "resizable=yes,scrollbars=yes,menubar=yes,location=yes,status=yes");
否則,使用RequestBuilder
作爲Silfverstrom建議。
與answer from ivo類似。我可以在我的GWT todomvc框架中使用filter mapping
而不是web.xml
文件中的servlet映射來完成此操作。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee">
<filter>
<filter-name>guiceFilter</filter-name>
<filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>guiceFilter</filter-name>
<url-pattern>/myurl/*</url-pattern>
</filter-mapping>
<listener>
<listener-class>com.todomvc.server.ToDoServerInjector</listener-class>
</listener>
<!-- Default page to serve -->
<welcome-file-list>
<welcome-file>GwtGaeChannelToDo.html</welcome-file>
</welcome-file-list>
</web-app>
我想我的問題歸結爲: 如何我一直在使用GWT多頁? – Chris 2009-06-01 20:55:38