我想在数据库中使用支架显示某些字段,请帮帮我
EX:
Product Model has property is ("name", "description", "price", "created_at")
and i want to display field 'name','description' and 'price' use scaffold
感谢您的帮助!
答案 0 :(得分:0)
我不确定这是一个很好的方法,但它会对你有用--- 只需在模型类上定义表模式即可。 喜欢你的 -
public $_schema = array(
'name' => array(
'type' => 'string',
'length' => 30
),
'description' => array(
'type' => 'text'
),
'price' => array(
'type' => 'float'
)
);