如何在 Symfony 1.4 (Propel) 中编辑现有记录

How to edit an existing record in Symfony 1.4 (Propel)

我有 table 行,我希望用户能够通过使用其记录值(table 名称:供应商)填充表单来进行编辑,然后提交编辑后的数据。

我已经阅读并重读了 Symfony 1.4 文档,但我遇到了问题: 1.) 使用现有记录数据填充表单字段。 2.) 保存编辑后的表格。

下面的表格是用于创建供应商的表格,据我了解是acceptable 用于编辑现有记录。

至于问题 #1,我尝试将现有记录值(在 __construct() 操作中)携带到表单中,然后使用 $this->setDefaults 将它们设置为默认值 有效 在编辑操作中重定向到表单时填充表单输入 但是当用户尝试重定向到表单时 表单不起作用创建操作,声明未找到默认值。

还可能值得注意的是,此模块中有多种形式。我用表单创建记录没有问题,只在创建后编辑它们的值。

有什么方向或建议吗?

下面的代码。

控制器:

public function executeVendorEdit(sfWebRequest $request)
{
    $ind_vendor = VendorPeer::retrieveByPK(($request->getParameter('id')));
    $this->form = new VendorCreateForm(array('name' => $ind_vendor));

if ($request->isMethod('post')) {

    $this->form->bind($request->getParameter('vendor'));
    if ($this->form->isValid()) {
        $vendor = $this->form->save();

        $this->redirect('catalog/vendorEdit?id=' . $vendor->getId());
        }
}
$this->setTemplate('vendorEdit');
}

形式:

class VendorCreateForm extends SmartForm
{
    protected $is_authenticated = null;
    public function __construct($is_authenticated = false)
    {
        $this->is_authenticated = $is_authenticated;

        parent::__construct();
    }

    public function setup()
    {
        $this->setWidgets(array(
            'name' => new sfWidgetFormInput(array(),
                array('class' => 'form-control')),
            'contact_name' => new sfWidgetFormInput(array(),
                array('class' => 'form-control')),
            'contact_email' => new sfWidgetFormInput(array(),
                array('class' => 'form-control')),
            'contact_phone' => new sfWidgetFormInput(array(),
                array('class' => 'form-control')),
            'address1' => new sfWidgetFormInput(array(),
                array('class' => 'form-control')),
        ));

        $this->setValidators(array(
            'name' => new sfValidatorString(array('required' => true)),
            'contact_name' => new sfValidatorString(array('required' => true)),
            'contact_email'   => new sfValidatorEmail(array('required' => true)),
            'contact_phone' => new sfValidatorString(array('required' => true)),
            'address1' => new sfValidatorString(array('required' => true)),
       ));

        $this->widgetSchema->setNameFormat('vendor[%s]');

        $this->setDefaults(array(
        ));

        parent::setup();
    }
}

错误:

Fatal error: Call to undefined method VendorCreateForm::save() in /projects/fun-project/src/apps/operations/modules/catalog/actions/actions.class.php on line 72

经过很多时间和挫折,我解决了这两个问题。使用值填充表单发生在表单内。它需要在构造操作中将供应商值传递给表单,然后在设置操作中设置默认值(如果供应商值存在):if ($this->vendor)

注意:$is_authenticated声明和构造不是必需的(检查我在问题中包含的表格)。

形式:

class VendorCreateForm extends SmartForm
{

protected $vendor = null;

public function __construct($vendor = false)
{
    $this->vendor = $vendor;

    parent::__construct();
}

public function setup()
{
    $this->setWidgets(array(
        'name' => new sfWidgetFormInput(array(),
            array('class' => 'form-control')),
        'contact_name' => new sfWidgetFormInput(array(),
            array('class' => 'form-control')),
        'contact_email' => new sfWidgetFormInput(array(),
            array('class' => 'form-control')),
        'contact_phone' => new sfWidgetFormInput(array(),
            array('class' => 'form-control')),
        'address1' => new sfWidgetFormInput(array(),
            array('class' => 'form-control')),
    ));

    $this->setValidators(array(
        'name' => new sfValidatorString(array('required' => true)),
        'contact_name' => new sfValidatorString(array('required' => true)),
        'contact_email'   => new sfValidatorEmail(array('required' => true)),
        'contact_phone' => new sfValidatorString(array('required' => true)),
        'address1' => new sfValidatorString(array('required' => true)),
   ));

    $this->widgetSchema->setNameFormat('vendor[%s]');

    if ($this->vendor)
    {
        $this->setDefaults(array(
        'name' => $this->vendor->getName(),
        'contact_name' => $this->vendor->getContactName(),
        'contact_email' => $this->vendor->getContactEmail(),
        'contact_phone' => $this->vendor->getContactPhone(),
        'address1' => $this->vendor->getAddress1(),
        ));
    }

    parent::setup();

}

在控制器中正确保存编辑的表单。正确的 executeVendorEdit 操作与我的 executeVendorCreate 操作几乎相同,但有两个区别:1.) 通过 Propel 查询检索当前对象 $this->vendor = VendorPeer::retrieveByPK($request->GetParameter('id')) 和 2.) NOT 声明新模型对象,而是将值保存到当前对象 $this->vendor。代码如下。

控制器

public function executeVendorEdit(sfWebRequest $request)
{
    $this->vendor = VendorPeer::retrieveByPK($request->GetParameter('id'));

    $this->form = new VendorCreateForm($this->vendor);

    if ($request->isMethod('post')) {

        $this->form->bind($request->getParameter('vendor'));
        if ($this->form->isValid())
        {
            $values = $this->form->getValues();

            $this->vendor->setName($values['name']);
            $this->vendor->setContactName($values['contact_name']);
            $this->vendor->setContactEmail($values['contact_email']);
            $this->vendor->setContactPhone($values['contact_phone']);
            $this->vendor->setAddress1($values['address1']);
            $this->vendor->setCreatedTs('now');
            $this->vendor->save();

            $this->redirect('catalog/vendors');
        }
    }
}