目前,我的表单元素如下所示:
<form enctype="multipart/form-data" name="copyReplaceForm" method="POST" action="/app/applications/copyreplace/postCsv">
但是我想用dojo.xhrPost()
发送它,而不是在<form>
上给出action
、enctype
和method
。
有人能告诉我如何使用xhrPost
发送吗?
此外,我的REST代码片段如下所示:
@POST
@Path("/bulkCopyReplaceFirst")
@Produces(MediaType.TEXT_PLAIN)
@Consumes(MediaType.MULTIPART_FORM_DATA)
我的xhrPost如下所示
var result;
dojo.xhrPost({
url :"/CopyReplace/bulkCopyR",
preventCache: true,
contentType : "multipart/form-data",
load: function(response) {
txtResponse = response;
console.log("response is : txtResponse"+txtResponse)
},
error: function(error, ioArgs) {
console.log("postImageOptions() ERROR :: " + error);
console.log("postImageOptions() ioArgs :: " + ioArgs);
return error;
}
});
}
2条答案
按热度按时间biswetbf1#
xhrPost中的url与@Path注解中指定的路径不同。
您应该将
form
属性添加到xhrPost。j1dl9f462#
您可以直接使用Dojo Uploader。