0

我正在编写一个在内部使用的 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:缺少开始边界

有任何想法吗?

4

2 回答 2

2

您不能设置文件输入的值 - 否则您可能会从人们的机器中窃取文件。

于 2009-09-08T19:49:36.877 回答
0

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

于 2009-09-08T19:48:50.183 回答