0

第一:对不起我的长消息。

我正在尝试学习 Fuel,但我在使用 Fieldset 类和 Orm 时遇到了一些问题。根据我的数据库,我创建了一个扩展 ORM 的模型,以便获得自动生成的表单。

我的模特

class Model_Product extends \Orm\Model
{
    protected static $_table_name = 'products';

    protected static $_properties = array(
        'id' => array(
            'data_type' => 'int'
        ),
        'name' => array(
            'data_type' => 'varchar',
            'label' => 'Name',
            'validation' => array(
                'required', 'trim', 'max_length'=>array(30), 'min_length'=>array(3)
            ),
        ),
        'description' => array(
            'data_type' => 'varchar',
            'label' => 'Description',
            'validation' => array(
                'max_length' => array(290)
            ),
            'form' => array(
                'type' => 'textarea'
            ),
        ),
        'price' => array(
            'data_type' => 'integer',
            'label' => 'Price',
            'validation' => array(
                'required', 'trim', 'valid_string' => array('numeric','dots')
            ),
        ),
        'pic' => array(
            'data_type' => 'varchar',
            'label' => 'Path to the pic',
            'validation' => array(
                'required', 'trim'
            ),
        ),
        'registered' => array(
            'data_type' => 'date',
            'label' => 'Registration date',
            'validation' => array(
                'required', 'trim'
            ) //'valid_string' => array('numeric','dashes')
        ),
    );
} //end of class Model_Product

然后我创建将验证表单的控制器。

我的控制器功能

function action_add() 
{ 
    $fieldset = Fieldset::forge('add_product')->add_model('Model_Product')->repopulate();

    $form = $fieldset->form();

    $form->add('submit', '', array('type' => 'button', 'value' => 'Add item', 'class' => 'button-link' ));

    $validation = $fieldset->Validation();

    if($validation->run() === true) 
    { 
        $fields = $fieldset->validated();

        //create a new Product, with validated fields 
        $product = new Model_Product;

        $product->name = $fields['name']; 
        $product->description = $fields['description']; 
        $product->price = $fields['price'];
        $product->pic = $fields['pic']; 
        $product->registered = $fields['registered'];

        try 
        { 
            //if the product is successfully inserted in the database
            if($product->save()) 
            { 
                Session::set_flash('success', 'Product successfully added !');
                \Response::redirect('products/product_details/'.$product->id); 
            }
        } 
        catch(Exception $e) 
        { 
            Session::set_flash('error', 'Unable to save the product into the database !'.$e->getMessage()); 
        }
    } 
    //If the validation doesn't pass 
    else 
    { 
        Session::set_flash('error', $fieldset->show_errors()); 
    }

    $this->template->set('content', $form->build(), false);

} // end of method add()

我的第一个问题:我如何以及在我的控制器函数中的何处添加具有特定类的“fieldset”标签,以“美化”我的自动生成的表单?比方说

<fieldset class="add_product">

第二个问题:我必须做什么才能正确验证 de 'price' 字段,因为在 MySQL 中设置为十进制(5,2),但是当我尝试使用我的实际验证规则进行验证时,它没有t 通过(它仅适用于整数值,例如:42,但不适用于十进制值,例如:42.35)。我试图将类型从“整数”更改为“双”,但它不起作用。

如果您可以指出一些关于我的问题的具体文档,我可能还没有阅读,请随意。

加布里埃尔

4

1 回答 1

1

我可以回答第一个问题要更改自动生成的表单,您需要复制fuel/core/config/form.phpfuel/app/config目录并编辑此文件以满足您的需要。

于 2013-03-02T18:00:05.173 回答