3

我有一个 zend 表单,可以让用户填写对象的属性。例如,音乐艺术家。该表单包含有关艺术家的基本信息,例如姓名、电话号码、地址等等,但它也有一个文件上传字段。如果用户上传一个文件,它与该对象的实例一起存储在数据库中(本质上是一行),如果用户想要编辑这个特定实例,则用对象信息重新填充表单。但是,表单不会重新填充文件上传信息,因为它不会重新上传它。

我如何向用户发出文件已经上传的信号,指出它是哪个文件,甚至可能链接到它?类似于填充表单元素的东西是首选。理想情况下,我希望能够为用户提供上传先前上传文件的能力,因此文件上传元素应该保留。任何的想法?非常感谢您的阅读。

干杯,乔钦

4

2 回答 2

6

我发现实现这一点的最快方法是将Chelmertz 的答案这个线程结合起来。

我没有定义装饰器来显示先前上传的文件,而是将链接放在元素的描述中,然后将其转储到视图脚本中。

最终解决方案如下所示:

Zend 表单文件:

class Application_Form_LabDetails extends Zend_Form{
private $_uploadPath;
private $_artistID;
private $_singleFile;

public function __construct($options = array()) {

    if(isset($options['uploadPath'])) {
        $this->_uploadPath = $options['uploadPath'];
        unset($options['uploadPath']);
    }

    if(isset($options['artistID'])) {
        $this->_artistID = sprintf("%06s",(string)$options['artistID']);
        unset($options['artistID']);
    }

    if(isset($options['singleFile'])) {
        $this->_singleID = $options['singleFile'];
        unset($options['singleFile']);
    }

    return parent::__construct($options);
}

public function init()
{
    $this->setName('artistDetails');

    ...

    $singleID = $this->createElement('file', '$singleFile');
    $singleID->setLabel('Current Single')
        ->setDestination('data/uploads')
        ->addValidator('count',true, 1)
        ->addValidator('Size', true, 5242880)
        ->addValidator('Extension', true, 'mp3');

    if($this->_cocFile){
        $singleID->setDescription(
            '<a href="/'.$this->_uploadPath.'/'.$this->_artistID
            .$this->_singleFile.'" taget="_blank">'
            .$this->_singleFile.'</a>')
        ->setDecorators(
            array('File',
            array('ViewScript',
            array('viewScript' => 'artist/file.phtml', 'placement' => false)
            )));
    }

    ...
}}

查看脚本以处理文件详细信息和表单元素:

<!-- decorator through view script,  placed in 'views/scripts/controller/file.phtml' -->
<!-- outputs form label markup -->
<dt id="<?php echo $this->element->getName(); ?>-label">
    <label for="<?php echo $this->element->getName(); ?>" 
        class="<?php if ($this->element->isRequired()): ?>required<?php endif; ?>">
        <?php echo $this->element->getLabel(); ?></label><br />
    <span>Uploaded: <?php echo $this->element->getDescription(); ?></span>
</dt>

<!-- outputs form element markup -->
<dd id="<?php echo $this->element->getName(); ?>-element">
    <?php echo $this->content; ?>
    <?php if ($this->element->hasErrors()): ?>
        <ul class="error">
            <?php echo $this->formErrors($this->element->getMessages()); ?>
        </ul>
    <?php endif; ?>
</dd>

最后在控制器中我有:

//$id is taken from the URI
if ($id > 0) {

    $artistDetails = new Application_Model_DbTable_ArtistDetails();
    $artistData = $artistDetails->getArtistDetails($id);
    $options = array(
        'uploadPath' => $config->uploads->labs->path,
        'artistID' => $artistData['a_id'],
        'singleFile' => $artistData['a_singleFile'],
        );

    $form = new Application_Form_LabDetails($options);

    ...

}

这应该给你一些看起来像:

替代文字

于 2010-09-13T18:27:01.153 回答
2

我如何向用户发出文件已经上传的信号,指出它是哪个文件,甚至可能链接到它?

我会打印出之前上传的文件。

为此,您可以使用表单装饰器。这是一个需要在考虑到安全性的情况下进行修改和重构的草图,但它确实会打印出一个图像标签。(如果您想显示文件列表,最后会有提示。)

// has to override a File-decorator in my case
class ArtistDecorator extends Zend_Form_Decorator_File {
    private $_artistId;
    public function __construct($options = array()) {
        if(isset($options['artistId'])) {
            $this->_artistId = $options['artistId'];
            unset($options['artistId']);
        }
        return parent::__construct($options);
    }

    public function render($content) {
        return '<img src="/images/'.$this->_artistId.'.jpg" />'.$content;
    }
}

class Application_Form_Login extends Zend_Form{
    private $_artistId;

    public function __construct($options = array()) {
        if(isset($options['artistId'])) {
            $this->_artistId = $options['artistId'];
            unset($options['artistId']);
        }
        return parent::__construct($options);
    }

    public function init() {
        $this
            ->setAction('/')
            ->setMethod('post');
        $el = new Zend_Form_Element_File('image');
        if($this->_artistId) {
            $el->setDecorators(array(new ArtistDecorator(array('artistId' => 3))));
        }       
        $this->addElement($el);
    }
}

您不应该填充文件元素,因为您不希望它一遍又一遍地上传相同的文件。

如果文件是 mp3 左右:遵循相同的例程,但使用如下输出:

<ul>
  <li><a href="/music/song_1.mp3">Song 1</a></li>
  <li><a href="/music/song_2.mp3">Song 2</a></li>
</ul>

将“歌曲”注入表单的构造函数。

于 2010-09-12T15:54:19.267 回答