Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让表单助手自己创建表单的输入(从数据库表中检索)?
创建表单的最快方法:
echo $form->create(); echo $form->inputs(); echo $form->end();
看看代码 cake 用于脚手架,它基本上是在 $Model->schema() 上做一个 foreach 并为每个字段回显一个输入。Cake 已经为该字段选择了一个输入类型,所以其余的都是自动的