如何使用Javascript创建和提交表单

时间:2009-09-08 19:42:16

标签: javascript web-services firefox multipartform-data

我正在编写一个将在内部使用的Firefox扩展程序。基本上,我需要向Web服务提交pdf文件和一些文本值。现在我有一个html页面,这样做。我需要扩展来自动收集和提交数据到Web服务。

这是有效的HTML。

<body>
<form name="frm_upload_file" enctype="multipart/form-data" method="post" action="my web service address">
<table cellpadding="2" cellspacing="0" border="0">
    <tr>
        <td>ClientID</td>
    <td><input type="text" name="client_id" /></td>
</tr>

<tr>
   <td>HTML</td>
   <td><input type="text" name="html" /></td>
</tr>
<tr>
   <td align="right" class="inputtxt"> File: </td>
   <td class="inputtxt">

       <input name="pdf" type="file" />
   </td>
</tr>
<tr>
   <td align="left" colspan="2" class="inputtxt">
       <p><br /><input type="submit" name="submit" value="Submit" /></p>
   </td>
</tr>
</table>

这是没有

的javascript
postToURL: function(html, file) {
var form = content.document.createElement("form");
form.setAttribute("enctype", "multipart/form-data");
form.setAttribute("method", "post");
form.setAttribute("action", "address to my web service");

var clientIDField = document.createElement("input");
clientIDField.setAttribute("type", "text");
clientIDField.setAttribute("name", "client_id");
clientIDField.setAttribute("value", "123456");
form.appendChild(clientIDField);

var htmlField = document.createElement("input");
htmlField.setAttribute("type", "text");
htmlField.setAttribute("name", "html");
htmlField.setAttribute("value", html);
form.appendChild(htmlField);    

var fileField = document.createElement("input");
fileField.setAttribute("type", "file");
fileField.setAttribute("name", "pdf");
fileField.setAttribute("value", file);
form.appendChild(fileField);

content.document.body.appendChild(form);    
form.submit();

使用js提交数据时,我从服务器获得以下异常。 例外

javax.servlet.ServletException:com.sun.jersey.api.container.ContainerException:javax.mail.MessagingException:缺少起始边界

有什么想法吗?

2 个答案:

答案 0 :(得分:2)

您无法设置文件输入的值 - 否则您可能会从人们的计算机上窃取文件。

答案 1 :(得分:0)

出于安全原因,我认为您无法修改<input type="file">字段的值。您可能需要找到另一种自动化方法。