在 cakephp 中设置表单元素的默认选项

发布于 2024-10-10 16:39:14 字数 87 浏览 3 评论 0原文

是否可以在不更改蛋糕目录的情况下更改 CakePHP 中表单元素的默认行为?就我而言,我想禁用输入上的验证错误输出,但希望不必为站点上的每个选项设置该选项。谢谢

Is it possible to change the default behavior of form elements in CakePHP without altering the cake directory? In my case I would like to disable validation error output on inputs but would prefer to not have to set the option for every single one on a site. Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧人哭 2024-10-17 16:39:14

http://book.cakephp.org/view/1639 /x7-3-1-5-选项-inputDefaults

您可以声明一组默认值
input() 的选项
inputDefaults 键来自定义您的
默认输入创建。

echo $this->Form->create('用户', array(
    '输入默认值' =>大批(
        '标签' =>错误的,
        'div' =>错误的
    )
));

http://book.cakephp.org/view/1639/x7-3-1-5-options-inputDefaults

You can declare a set of default
options for input() with the
inputDefaults key to customize your
default input creation.

echo $this->Form->create('User', array(
    'inputDefaults' => array(
        'label' => false,
        'div' => false
    )
));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文