我想知道是否有可能,通过使用预先模式上传的primefaces限制用户仅上传一个文件,目前我有:
<p:fileUpload fileUploadListener="#{fileUploadController.handleFileUpload}"
mode="advanced"
multiple="false"
update="messages"
sizeLimit="100000000"
allowTypes="/(\.|\/)(gif|jpe?g|png|doc|docx|txt|pdf)$/"
auto="false"/>
<p:growl id="messages" showDetail="true"/>
你可以看到我有muliple =“false”但用户仍然可以上传多个文件,任何提示?
编辑:
<p:fileUpload widgetVar="upload" fileUploadListener="#{fileUploadController.handleFileUpload}"
mode="advanced"
multiple="false"
update="messages"
label="Select File"
sizeLimit="100000000"
allowTypes="/(\.|\/)(gif|jpe?g|png|doc|docx|txt|pdf|html)$/"
auto="false"/>
<p:growl id="messages" showDetail="true"/>
已添加上面的widgetVar
和我的js
<script type="text/javascript">
function Naviagtion()
{
//alert("Sent to the printing holding queue, you may close this app now, your work will still print out ");
window.setTimeout(afterDelay, 500);
location.href = 'FilesUploaded.xhtml';
}
upload.buttonBar.find('input[type=file]').change(function() {
if (this.value) {
var files = upload.uploadContent.find('.files tr');
if (files.length > 1) {
files.get(0).remove();
}
}
});
</script>
但是我仍然可以进行多重上传,我正朝着正确的方向前进
答案 0 :(得分:12)
虽然解决它的更好的行为应该像@BalusC建议的那样,但是在primefaces 4.0中我看到了属性
fileLimit="1"
您可以设置为1以使用“选择”按钮禁止多个文件添加。当用户添加更多文件时,它只是说
“超出最大文件数”
答案 1 :(得分:8)
multiple="false"
仅告知Web浏览器在特定于浏览器的浏览对话框中禁用多个文件选择。但是,它确实不会阻止最终用户在PrimeFaces文件上传部分的选择按钮上多次单击以多次浏览和添加单个文件。
最好的办法是在选择新文件时引入一些JS / jQuery来删除所有以前选择的文件。如果您已经<p:fileUpload>
widgetVar="upload"
,那么应该这样做:
$(document).ready(function() {
upload.buttonBar.find('input[type=file]').change(function() {
if (this.value) {
var files = upload.uploadContent.find('.files tr');
if (files.length > 1) {
files.get(0).remove();
}
}
});
});
在PrimeFaces 3.5上为我工作。
答案 2 :(得分:0)
如果您将文件限制设置为1并且在加载文件时发生了一些错误 - 您必须刷新页面才能再次进行文件上传工作。如果您不刷新页面,则会出现限制错误消息。
我在JS中使用了解决方案,就像在接受的答案中一样,但是必须更改选择器,因为wigetWar对我不起作用。
在我看来,我有:
<p:fileUpload id="objectUpload"... />
在我的portlet主题中,带文件的表有一个css类“ui-fileupload-files”。
$(document).ready(function() {
$("div[id*='objectUpload']").find('input[type=file]').change(function() {
if (this.value) {
var files = $("div[id*='objectUpload']").find('.uifileupload-files tr');
if (files.length > 1) {
files.get(0).remove();
}
}
});
});
希望它有所帮助。我使用了PrimeFaces 6.0