5
在PrimeFaces 3.4中,屬性sizeLimit
和allowTypes
在mode="simple"
的情況下不起作用。我如何驗證文件大小和允許的類型?如何驗證文件大小並鍵入<p:fileUpload mode =「simple」>?
在PrimeFaces 3.4中,屬性sizeLimit
和allowTypes
在mode="simple"
的情況下不起作用。我如何驗證文件大小和允許的類型?如何驗證文件大小並鍵入<p:fileUpload mode =「simple」>?
mode="simple"
會生成一個普通的HTML5 <input type="file">
而不是使用jQuery/Ajax文件上傳,所以客戶端設施是有限的。
如果網頁瀏覽器支持新的HTML5 File
API,那麼您可以使用它。它增加了對<input type="file">
上新的accept
屬性的支持,並使JavaScript能夠訪問特定的文件屬性,例如File#size
。
E.g.
<p:fileUpload mode="simple" styleClass="imagesOnlyMax10MB" />
這個JS(使用jQuery的PrimeFaces):
$("input[type=file].imagesOnlyMax10MB").attr("accept", "image/*").on("change", function() {
var max = 10 * 1024 * 1024; // 10MB
if (this.files && this.files[0].size > max) {
alert("File too large."); // Do your thing to handle the error.
this.value = null; // Clears the field.
}
});
否則,最好的辦法是真正驗證它在服務器端。您可以使用ExternalContext#getMimeType()
來獲取基於文件擴展名的MIME類型(您可以將所有MIME類型管理爲<mime-mapping>
,web.xml
;容器自帶的默認類型爲<mime-mapping>
)。
if (!externalContext.getMimeType(filename).startsWith("image/")) {
// Not an image.
}
限制自己使用簡單模式的任何理由。 [這](http://stackoverflow.com/questions/5697605/limit-the-size-of-an-file-upload-html-input)可能會幫助你瞭解,如果你正在尋找客戶端解決方案作爲簡單模式使用本機瀏覽器上傳沒有任何限制。 – Ravi
我使用簡單模式是因爲兩個原因:(a)我只是將要上傳的文件數量限制爲1,(b)我希望文件可以通過點擊表單提交按鈕上傳。 –