我无法理解发生了什么。我只想调用 PostsController.index() 但它不起作用。
// View/Posts/index.ctp
<?php echo $this->Form->create(false, array('type' => 'post')); ?>
如果我在 PostsController 中对此进行注释。
// public $components = array('Security');
环境: Cakephp 2.3.8 PHP 版本 5.4.7
更新:
能够使用 Csrf 检查就足够了,所以我修改了下面的“安全”选项。
public $components = array(
'Security' => array('validatePost' => false),
);
但我仍然不明白 SecurityComponent 的行为......