1. 程式人生 > >檔案上傳時顯示The request sent by the client was syntactically incorrect ()

檔案上傳時顯示The request sent by the client was syntactically incorrect ()

前端頁面涉及到檔案上傳的時候,標籤中不只需要action屬性,還需要新增enctype="multipart/form-data"以及規定提交方式method=“post”,即:

<form name="documentInsert"enctype="multipart/form-data"method="post"onsubmit="return checkform();"action="document/insertDocument">

否則瀏覽器端會顯示HTTP Status 400 的錯誤,並提示The request sent by the client was syntactically incorrect ()。