1回のリクエストで既存のRESTAPIに3つのパーツをアップロードする必要があるHTMLフォームがあります。FormData送信に境界を設定する方法に関するドキュメントが見つからないようです。
私はここに与えられた例に従おうとしました: jQueryでAjaxリクエストを使ってFormDataオブジェクトを送信する方法は?
ただし、データを送信すると、次のスタックトレースで拒否されます。
Caused by: org.apache.commons.fileupload.FileUploadException: the request was rejected because no multipart boundary was found.
どうすれば境界を設定できますか?
HTML/Javascriptは次のとおりです。
<script type="text/javascript">
function handleSubmit() {
var jsonString = "{" +
"\"userId\":\"" + document.formSubmit.userId.value + "\"" +
",\"locale\":\"" + document.formSubmit.locale.value + "\"" +
"}";
var data = new FormData();
data.append('Json',jsonString);
data.append('frontImage', document.formSubmit.frontImage.files[0]);
data.append('backImage', document.formSubmit.backImage.files[0]);
document.getElementById("sent").innerHTML = jsonString;
document.getElementById("results").innerHTML = "";
$.ajax({
url:getFileSubmitUrl(),
data:data,
cache: false,
processData: false,
contentType: 'multipart/form-data',
type:'POST',
success:function (data, status, req) {
handleResults(req);
},
error:function (req, status, error) {
handleResults(req);
}
});
}
</script>
フォームは次のとおりです。
<form name="formSubmit" action="#">
userId: <input id="userId" name="userId" value=""/><br/>
locale: <input name="locale" value="en_US"/><br/>
front Image: <input type="file" name="frontImage"/><br/>
back Image: <input type="file" name="backImage"/><br/>
<input type="button" onclick="handleSubmit();" value="Submit"/>
</form>
助けてくれてありがとう!