有条件地从bean调用JavaScript



在JSF 2中如何有条件地从bean调用JavaScript ?

我有一个类,它使用PrimeFaces将用户文件上传到一个特定的文件夹,但是如果用户试图上传一个与已经存在的文件名相同的文件,我希望JavaScript在这种情况下在屏幕上打开一个框,询问用户是否要覆盖旧文件,或者取消操作。如果不存在同名的文件,则不调用JavaScript。

我知道如何测试文件夹中是否有特定的文件,只是我需要知道如何有条件地调用JavaScript。

我将非常感谢任何关于这方面的建议。


我已经在网上查看了各种资源,但仍然无法使应用程序正常工作。基本上,这就是我所做的,在包含的xhtml页面中,我有以下代码用于文件上传:

<p:fileUpload id="fileUpload" fileUploadListener="#{filters.upload}"
   allowTypes="#{filters.uploadTypes}" invalidFileMessage="#{filters.uploadBadType}"
   sizeLimit="#{filters.uploadSize}" invalidSizeMessag="#{filters.uploadBadSize}"
   update="fileUpload fileTable uploadMessage" description="Select Text File"
   disabled="#{filters.disableFileUploadButton}"/>
<!--- Then further in the same file is this: -->
<p:remoteCommand name="remoteCommandOverwrite" actionListender="#{filters.execOverwrite}"/>

包含上述内容的父xhtml页面有以下JavaScript:

<script type="text/javascript">
  function popupConfirm() {
    var overwrite = confirm('Warning: This will overwrite the existing file - Do you confirm this?');
    if (overwrite) remoteCommandOverwrite([{name: overwrite, value: true}]);
  }
</script>

在我的bean中,我在三个方法中有以下代码:

    public void upload(FileUploadEvent event) {
    FacesMessage msg = new FacesMessage("Success! ", event.getFile().getFileName() + " is uploaded.");  
    FacesContext.getCurrentInstance().addMessage(null, msg);
    overwrite = false;
    // Do what you want with the file        
    try {
        copyFile(event.getFile().getFileName(), event.getFile().getInputstream());
    } catch (IOException e) {
        e.printStackTrace();
    }
}
    public void copyFile(String fileName, InputStream in) {
     // Initialization etc.
                    File file = new File(uploadFull + fileName);
        if (file.exists()) {
            RequestContext.getCurrentInstance().execute("popupConfirm()");
// Then test to see if overwrite is true or false, and act accordingly
}
// Then I am supposed to get the value of overwrite here:
public void execOverwrite() {
    System.out.println("### execOverwrite() ###");
    FacesContext context = FacesContext.getCurrentInstance();
    Map<String, String> map = context.getExternalContext().getRequestParameterMap();
    String soverwrite = (String) map.get("overwrite");
    if (soverwrite.equals("true")) {
        overwrite = true;
        System.out.println("overwrite: true");
    }
}

我要做的是首先有条件地调用JavaScript函数popupConfirm()。如果条件为真,则单击"上传"按钮,这就是我想要的。然后应该调用

这可以工作并弹出confirm()框,但从未调用过,因此bean中的方法execOverwrite()也从未调用过,并且我无法拾取返回值并将其传递给方法copyFile()中的代码。出了什么问题?


我把这个问题搁置了大约一个星期,现在才重新开始做。我让它工作,并可以传递一个值回bean,但不知何故,我需要从调用JavaScript的地方恢复执行。 总之,我的JavaScript包含以下代码:
<script type="text/javascript">
  function popupConfirm() {
    var overwrite = confirm('Warning: This will overwrite the existing file - Do you confirm this?');
    if (overwrite) remoteCommandOverwrite([{name: 'overwrite', value: 'true'}]);
  }
 </script>

xhtml代码中有:

<p:fileUpload id="fileUpload" fileUploadListener="#{filters.upload}" ...../>
<!-- Other code -->
<p:remoteCommand name="remoteCommandOverwrite" actionListener="#{filters.execOverwrite}"/>

然后在单击选择文件按钮后单击文件上传按钮,执行上面列出的JavaScript代码:

RequestContext.getCurrentInstance().execute("popupConfirm()");

然后在对话框中单击"确定",在同一bean中调用此方法:

public void execOverwrite() {
    FacesContext context = FacesContext.getCurrentInstance();
    Map<String, String> map = context.getExternalContext().getRequestParameterMap();
    String soverwrite = map.get("overwrite");
    if (soverwrite.equals("true")) {
        overwrite = true;       }
    }
}

标志"overwrite"最终将被测试是否为真。

我使用不同的print语句检查这是否有效。然而,代码不会在遇到以下语句后恢复执行:RequestContext.getCurrentInstance().execute("popupConfirm()");无论我是在对话框中输入"确定"还是"取消",这都是我想要的。看起来好像需要某种类型的回调,并且非常感谢一些想法。

根据您的标记,您正在使用PrimeFaces,因此当浏览器完成处理服务器响应时,有一种简单的方法可以从服务器端事件管理bean方法调用javascript函数。PrimeFaces提供了一个名为RequestContext的实用程序类。

public void doActionListenerMethod() {
  if (!isValid()) {
    RequestContext.getCurrentInstance().execute("MyJSObject.doClientSideStuff()");
  }
}

当JSF在客户机上完成呈现时,下面的代码将作为Javascript执行字符串参数。

相关内容

  • 没有找到相关文章

最新更新