我的问题是文件上传器http://valums.com/ajax-upload/
将params添加到URL而不是通过POST传递它们。
例如:
action:'/upload.php'
params : { x1:'x1'}
...将以网址提交:
/upload.php?x1=x1
(GET),但我需要通过POST传递额外的参数。这可能吗?
答案 0 :(得分:3)
我认为你正在使用old version的ajax-upload。 我找到了this new one。
以下是一个正常工作的示例,其中data
属性已正确转换为隐藏输入字段:
http://jsfiddle.net/marcosfromero/XkCP5/
var button = $('#button1'), interval;
new AjaxUpload(button,{
//action: 'upload-test.php', // I disabled uploads in this example for security reasons
action: 'upload.htm',
--> data: {field1: 'value1', field2: 'value2'}, <--
...
我停止了文件的提交,并自动创建了这个表单:
<form enctype="multipart/form-data" method="post" style="display: none;" action="upload.htm" target="ValumsAjaxUpload0">
<input type="hidden" name="field1" value="value1">
<input type="hidden" name="field2" value="value2">
<input type="file" name="myfile" style="position: absolute; margin: -5px 0pt 0pt -175px; padding: 0pt; width: 220px; height: 30px; font-size: 14px; opacity: 0; cursor: pointer; display: block; z-index: 2147483583; top: 48px; left: 147px;">
</form>