如何从 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()。如果代码为真,则单击“上传”按钮,这就是我想要的。然后应该调用
这有效并打开了确认()框,但从未调用过,因此我的 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; }
}
}
最终将测试标志“覆盖”以查看它是否为真。
使用各种打印语句,我检查它是否有效。但是,代码在遇到以下语句后并没有恢复执行:RequestContext.getCurrentInstance().execute("popupConfirm()"); 无论我在对话框中输入“确定”还是“取消”,这都是我想要它做的。看起来好像需要某种类型的回调,并且非常感谢一些想法。