0

我正在使用 ZF2,由于设计原因,我的一些字段是按惯例创建的。虽然很少是通过 zend 形式创建的。问题是,当我发布数据时,我只会得到那些通过 ZF2 表单创建的字段,例如我的用户名字段、性别、标题。其余字段未发布。这是我的代码的片段

 <?php
 $form = $this->form;
 $form->prepare();


 echo $this->form()->openTag($form);

?>
<div class="featureBox">
<div class="profile_address">
    <div class="main">
        <div class="address_head"><h4><?php echo $form->get('username')->getValue(); ?> > Account Detail</h4></div>
        <div class="field_set">
            <div class="field_input">
                <label><?php echo $form->get('username')->getLabel(); ?></label>
                <div class="field"><input type="text" readonly="readonly"value="<?php echo $form->get('username')->getValue(); ?>"></div>
            </div>
            <div class="field_input">
                <label><?php echo $form->get('email')->getLabel(); ?></label>
                <div class="field"><input type="text" value="<?php echo $form->get('email')->getValue(); ?>"></div>
            </div>
        </div>     
        </div>
        <div class="field_set">
            <div class="field_input">
                <?php echo $this->formRow($form->get('gender')->setAttribute('class', 'stylish-select')); ?>
            </div>

        </div>
        <div class="field_set">
            <div class="field_input">
                <?php echo $this->formRow($form->get('title')); ?>
            </div>
        </div>
        <div class="free-btn">
            <input type="submit" value="Save" onclick="return validatePassword();"/>
            <input type="button" value="Back" class="button" onclick="window.location='<?php echo $this->url('admin_administrator'); ?>';return false;" />
        </div>
    </div>
</div>
</div>
<?php
$this->form()->closeTag();
?>

如果我使用,任何关于出错的想法我都可以解决

$this->formRow()

所有领域,但如果我使用它会破坏我的设计要求。

4

1 回答 1

1

例如,您的输入没有name属性

<input type="text" value="<?php echo $form->get('email')->getValue(); ?>">

应该

<input type="text" name="email" value="<?php echo $form->get('email')->getValue(); ?>">
missing------------^
于 2013-03-09T16:15:16.043 回答