我不知道如何通过 Cake 的表单安全地传递参数。我现在使用的方法如下:
$this->Form->create('Post', array('label' => '', 'action' => '', 'url' => 'inseratAngenommen/'.$postId));
在控制器中有支架:
function inseratAngenommen($id = null, $bs = null){
//stuff
}
问题是用户可以在浏览器中修改$postId的输出数:
action="/cakephp/posts/inseratAngenommen/149"
对于这种情况,我想传递 HTML 中不可见的参数。那可能吗?我想到了 Form->PostLink 提供的方法。我什么也找不到。提前致谢。