0

Trying to post some data at URL: "

    $(function() {
             var frm = $(document.myform);
             var data = "?lm_po_id=154668&authentication=ThisisAuth&description=ThisIsDesc";//JSON.stringify(frm.serializeArray());

//var data = JSON.stringify(frm.serializeArray()); // Also tried this

         alert(data + "I am about to POST this:\n\n" + data);
         $.postJSON = function (url, data, callback) {
                $.ajax({
                    'url': frm.attr("action"),
                    'type': 'post',
                    'processData': false,
                    'data': JSON.stringify(data),
                    contentType: 'application/json',
                    success: function (data) { callback(JSON.parse(data)); },
                });
            };
     });

This call the right function properly but when i check it in debug mode all parameters have null values, can some one help me what wrong i am doing. Here is my HTML form

<form action="http://192.168.0.124:8080/Ilex-WS/service/ilexmobile/poImageUpload" name="myform" method="post" enctype="multipart/form-data">
    <input type="text" value="158664" name="lm_po_id" /><br />
    <input type="text" value="AuthCodeMD5" name="authentication" /><br />
    <input type="text" value="584" name="imagenumber" /><br />
    <input type="text" value="ImgName.png" name="name" /><br />
    <input type="text" value="This is desc" name="description" /><br />
    <input type="file" value=""  name="uploadedimage" /><br /> 
    <input type="button" value="Submit" onclick="javascript:document.myform.submit()"/><br />
</form>

Thanks in advance....

4

1 回答 1

3

你的 JavaScript 唯一要做的就是警告一个字符串。

您永远不会将事件处理程序绑定到表单的提交方法,即使您这样做也不会触发,因为您使用form.submit()提交表单而不是提交按钮。(所以这提交表单编码数据而不是 JSON 编码数据)。

您将一个函数存储在 中$.postJSON,但您从不调用它,并且它有一个名为的局部变量,无论如何data都会屏蔽var data = "?lm_po...(并不是说使用该值是有意义的,因为它是一个字符串并且您运行JSON.stringifydata)。

于 2013-04-18T08:35:12.913 回答