English 中文(简体)
多部分/格式数据
原标题:How call $.post and set content type Multipart/form-data data

我在我的JSP页面上有一个 Java 脚本功能

    function submitProductCategoryForm()
    {
        document.getElementById( isSave ).value="1";
        var elements=document.getElementById( addProductCategoryFrom ).elements;
        var url = "addProductCategory.jsp?";
       for (var i = 0; i < elements.length; i++)
          url += elements[i].id + "=" + encodeURIComponent($("#" + elements[i].id).val()) + "&";
       $.post(url, function(data)
       {
            alert("Function Complete");
       }); 
   }

它叫做jsp页,在这里我保存了 DB的数据。

此窗体上也有文件输入, 所以必须将内容类型设置为多部分/ 格式数据

但当我调用此函数时,我发现错误

IOException: 邮寄内容类型不是多部分/格式数据

我的形体是这样的

<form action="addProductCategory.jsp" method="post" enctype="multipart/form-data" id="addProductCategoryFrom">

所以请让我如何将内容类型设置为多部分 。

提前感谢

问题回答

我用了一个表格数据对象,它似乎想做什么就做什么, 检查我的问题/解答 < a href="https://stackoverflow.com/a/21191491/995514" >https://stackoverflow.com/a/211491/995514

$("#theForm").submit(function(e){
    e.preventDefault();
    var theForm = new FormData($(this)[0]);
    $.ajax({
        url:  .../rest/save ,
        type:  POST ,
        data: theForm,
        cache, false,
        contentType: false,
        processData: false
    });
    return false;
});




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签