0

Zendフレームワーク2で、ビューのformRowメソッドを次のように使用すると

$this->formRow($form->get('product_name'));

このようなHTMLを生成します

<label for="product_name">
    <span>Name</span>
    <input type="text" id="product_name" name="product_name">
</label>

しかし、 formInputを使用する場合

<div class="control-group">
    <?php echo $this->formLabel($form->get('product_name')->setLabelAttributes(array('class'=>'control-label'))); ?>
    <div class="controls">
        <?php echo $this->formInput($form->get('product_name')); ?>
    </div>
</div>

$this->formInput($form->get('product_name'));

idタグが取得できません

<input type="" name="product_name">

formElementを試してみましたが、同じ結果になりました。

すべての属性と値を含む入力のみをレンダリングするにはどうすればよいですか?

これが私のZendFramework2ビューの外観です(簡略化)

<?php echo $this->form()->openTag($form); ?>    
<div class="control-group">
    <?php echo $this->formLabel($form->get('product_name')->setLabelAttributes(array('class'=>'control-label'))); ?>
    <div class="controls"><?php echo $this->formInput($form->get('product_name')); ?></div>
</div>
<div class="control-group">
    <div class="controls"><?php echo $this->formSubmit($form->get('submit')); ?></div>
</div>

<?php echo $this->form()->closeTag(); ?>

およびZendFramework2フォーム

<?php
namespace Product\Form;

use Zend\Form\Form;

class ProductForm extends Form
{
    public function __construct($name = null)
    {
        // we want to ignore the name passed
        parent::__construct('product');
        $this->setAttribute('method', 'post');
        $this->setAttribute('class','form-horizontal');

        $this->add(array(
            'name' => 'product_name',
            'attributes' => array(
                'type'  => 'text',
            ),
            'options' => array(
                'label' => 'Name',
            ),
        ));

        $this->add(array(
            'name' => 'submit',
            'attributes' => array(
                'type'  => 'submit',
                'value' => 'Save',
                'id' => 'submitbutton',
                'class'=>'btn btn-success btn-large'
            ),
        ));
    }
}
?>
4

2 に答える 2

4

変化する:

    $this->add(array(
        'name' => 'product_name',
        'attributes' => array(
            'type'  => 'text',
        ),
        'options' => array(
            'label' => 'Name',
        ),
    ));

に:

    $this->add(array(
        'name' => 'product_name',
        'attributes' => array(
            'type'  => 'text',
            'id'    => 'product_name',
        ),
        'options' => array(
            'label' => 'Name',
        ),
    ));
于 2012-09-29T09:19:19.063 に答える
3

実際にこのコード:

 $this->add(array(
        'type' => 'Zend\Form\Element\Text',
        'name' => 'product_name',
        'attributes' => array(
            'id'    => 'product_name',
            'class' => 'span3',
        ),
        'options' => array(
            'label' => 'Your label',            
        ),
    ));

$this->formRow(...)フォームヘルパーが生成するという事実により、Bootstrap のような css レンダラーで正しく使用できます。

<label for="product_name">Your label</label><input type="text" name="product_name" class="span3" id="product_name" value="">

元の出力よりも読みやすいformRow(id も class 属性もなし)

于 2012-11-21T04:16:06.410 に答える