0

我有 gwt java 代码程序,它打开一个带有 url 的窗口。

 Map<String, Object> ids = new HashMap<String, Object>();
                    ids.put("employeeId", UserToken.getCurrentUserToken().getEmployeeId());
                    createCaseUrl = ICMIntakeConstants.buildGrailsUrl(ICMIntakeConstants.CLIENT_APPLICATION_CONTROLLER, "", ids);
                    ICMWindow.open(createCaseUrl, "intake", "height=600,width=800,scrollbars=yes,resizable=yes,toolbar=no,directories=no,status=no,menubar=no", true);

由于某种原因,它被调用了两次的代码问题(但 IE 和 chrome 处理它,但不是 firefox),这就是为什么窗口只在 Firefox 中弹出两次。我需要知道如何防止这种情况。我试图修改窗口的 JSNI 代码,但我的背景为零,当我进行研究时,不会出现一个简单的警报,所以我无法真正调试/查看发生了什么。

/**
 * Defines all variable in JavaScript accessible by Java code and opens a new browser window
 * with the specified url, name and features.
 */
public static native void open(String url, String name, String features, boolean force) 
/*-{
  $wnd.alert("test2");
    var winRef;
    try {

        if (force)
        {


                 winRef = $wnd.open(url,name, features);

                  $wnd.alert("test1 force");
                  Alert.alert("clicked!");

        }
        else
        {
            $wnd.alert("test2");
             winRef = $wnd.open("",name, features);
             if(winRef.location == 'about:blank')
             {
                  winRef.location=url
             }
             else 
             {
                  if(!/Chrome[\/\s]/.test(navigator.userAgent))
                  {
                      winRef.alert("Please click Ok To Continue....");
                  }
             }
        }

        // Set focus to the opened window
        winRef.focus();

    } catch (err) {
    }         
}-*/;

我尝试通过 JUNIT 测试调用 open() 方法,但没有...

谁能告诉我如何使警报弹出,因为即使我删除了整个代码并离开了 $wnd.alert("test2"); ,上面的代码也不起作用?以及如何检查 JSNI 中是否存在 winref 那么我不会打开窗口?请帮忙。

或者有没有办法可以在打开的窗口中插入类似 javascript 代码?解决此问题的最佳方法是什么?谢谢

4

1 回答 1

0

您必须维护对打开窗口的引用,以便您可以询问它是否已关闭。这里有一个工作示例:

  private native Element open(String url, String name, String features) /*-{
    return $wnd.open(url, name, features);
  }-*/;

  private native boolean isOpen(Element win) /*-{
    return !! (win && !win.closed);
  }-*/;

  private native void close(Element win) /*-{
    if (win) win.close();
  }-*/;

  private native void focus(Element win) /*-{
    if (win) win.focus();
  }-*/;

  private Element win = null;

  public void onModuleLoad() {

    Button open = new Button("Open Win");
    Button close = new Button("Close Win");
    RootPanel.get().add(open);
    RootPanel.get().add(close);


    open.addClickHandler(new ClickHandler() {
      public void onClick(ClickEvent event) {
        if (!isOpen(win)) {
          win = open("http://www.google.com", "myWin", "height=600,width=800,scrollbars=yes,resizable=yes,toolbar=no,directories=no,status=no,menubar=no");
        }
        focus(win);
      }
    });

    close.addClickHandler(new ClickHandler() {
      public void onClick(ClickEvent event) {
        close(win);
      }
    });

  }
于 2012-11-23T14:01:00.727 回答