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);
    }
}

同じファイルを何度も何度もアップロードしたくないため、file-要素を入力しないでください。

ファイルが 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 に答える