Jquery-File-Upload添加表单数据

时间:2014-01-17 02:21:38

标签: jquery-file-upload

我正在尝试按照文档将表单数据添加到JQuery-File-Upload,然后在我的服务器端php上传处理程序中处理它。

我在网页上添加了以下内容:

<form id="fileupload" action="/server/php/" method="POST" enctype="multipart/form-data">
<div class="row">
<label>Example: <input type="text" name="example1"></label>
</div>

然后我试图在我的UploadHandler.php文件中使用它:

protected function get_user_path() {
    if ($this->options['user_dirs']) {
        return $this->$POST['example1'].'/';
    }
    return '';
}

希望无论写入example1的文本是什么,它都会使上传文件夹成为。我认为这样可行,因为它在维基中说明了这一点:

  

e.g。一个名为属性example1的附加输入字段   作为POST参数example1到达服务器端。

如果我用$POST['example1']替换'test',那么它会将其放在名为test的文件夹中。

非常感谢帮助。

1 个答案:

答案 0 :(得分:0)

你有$POST,它应该是$_POST['example1']