如何在cakephp中使用scaffold显示某些字段

时间:2014-04-06 08:05:09

标签: cakephp-2.0 cakephp-2.1 cakephp-2.3

我想在数据库中使用支架显示某些字段,请帮帮我

EX:

     Product  Model has property is ("name", "description", "price", "created_at")
     and i want to display field 'name','description' and 'price' use scaffold

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

我不确定这是一个很好的方法,但它会对你有用--- 只需在模型类上定义表模式即可。 喜欢你的 -

Product.php

public $_schema = array(
        'name' => array(
            'type' => 'string',
            'length' => 30
        ),
        'description' => array(
            'type' => 'text'
        ),
        'price' => array(
            'type' => 'float'
        )

);