Zend Framework 2使用自定义HTML添加表单

时间:2015-03-01 05:27:10

标签: php html zend-framework zend-framework2 zend-form

我有这个HTML格式:

<form role="form" action="<?php $this->url('insediamento', array('action' => 'add')) ?>" method="POST">
        <div class="form-group col-lg-5">
            <label for="indirizzoSedeIns">Indirizzo</label>
            <input type="text" class="form-control" id="indirizzoSedeIns" placeholder="inserisci Indirizzo">
        </div>
        <div class="form-group col-lg-1">
            <label for="civico">Civico</label>
            <input type="text" class="form-control" id="civico" placeholder="n°">
        </div>
        <div class="form-group col-lg-3">
            <label for="istatProvincia">Cod. Istat Provincia</label>
            <input type="text" class="form-control" id="istatProvincia" placeholder="Istat Provincia">
        </div>
        <div class="form-group col-lg-3">
            <label for="istatComune">Cod. Istat Comune</label>
            <input type="text" class="form-control" id="istatComune" placeholder="Istat Comune">
        </div>
        <div class="form-group col-lg-5">
            <label for="recapitoSede">Recapito Sede</label>
            <input type="text" class="form-control" id="recapitoSede" placeholder="Recapito Sede">
        </div>
        <div class="form-group col-lg-3">
            <label for="istatComune">C.A.P</label>
            <input type="text" class="form-control" id="istatComune" placeholder="Istat Comune">
        </div>
        <div class="form-group col-lg-4">
            <label for="classificazione">Classificazione Insediamento:</label>
            <select class="form-control" id="classificazione">
                <?php foreach ($insediamenti as $insediamento) : ?>
                    <option><?php echo $this->escapeHtml($insediamento->description); ?></option>
                <?php endforeach; ?>
            </select>
        </div>
        <div class="form-group col-lg-6">
            <label for="longitude">Longitudine</label>
            <input type="text" class="form-control" id="longitude" placeholder="Longitudine">
        </div>
        <div class="form-group col-lg-6">
            <label for="latitude">Latitudine</label>
            <input type="text" class="form-control" id="latitude" placeholder="Latitudine">
        </div>
        <div class="checkbox col-lg-12">
            <button type="submit" class="btn btn-default">Submit</button>
        </div>
    </form>

如何在Zend Framework 2中使用它? 我需要保存这些信息,但我无法使用Zend Classes构建此表单,例如$ this-&gt; add,我必须使用HTML代码创建它们。

1 个答案:

答案 0 :(得分:0)

您可以使用以下格式创建部分:

在您的视图目录下创建一个部分文件夹,并在其中创建一个包含您的表单html内容的phtml文件。

然后在module.config.php的'view_manager'部分创建一个类似'layout / layout'的条目,但在这种情况下,名称可能是'myForm':

'view_manager' => array(
    'template_map' => array(
        'myForm'             => __DIR__ . '/../view/partial/myForm.phtml',
    ),
),

使用partial()View Helper:

在任何视图中使用它,如下所示
<div><?php echo $this->partial('myForm', array('action' => $this->url('doAdd'))); ?></div>

在部分View Helper的第二个参数中,您可以将参数传递给partial。在部分中,您可以使用以下参数:

<div>
  <form id="form1" action="<?php echo $action; ?>" method="post">
      <input type="number" name="op1"><br>
      <input type="number" name="op2"><br>
      <input type="submit" value="ok">
  </form>

希望这有帮助,

Ismael Trascastro