CakePHP在确认对话框中返回[对象对象]

时间:2014-02-14 10:59:32

标签: javascript cakephp-2.3

有没有人知道为什么会这样?

我的代码如下:

echo $this->Form->postLink('Excluir', array('action' => 'apagar', $credenciamento['Credenciamento']['id']), array('class' => 'linkbtn') ,array('confirm' => 'Deseja excluir este credenciamento?' ));

由蛋糕生成的代码:

<a href="#" class="linkbtn" onclick="if (confirm({"confirm":"Deseja excluir este credenciamento?"})) { document.post_52fdf00c73775579079346.submit(); } event.returnValue = false; return false;">Excluir</a>

当我尝试通过此链接删除任何记录时,他可以工作,但对话框中返回的消息只是:

[对象对象]

确定按钮和取消按钮

我在这个项目中也使用了Jquery,但是我的脚本生成的对话框正确返回。

1 个答案:

答案 0 :(得分:1)

我找到了答案:

echo $this->Form->postLink('Excluir credenciamento', array('action' => 'apagar', $credenciamento['Credenciamento']['id']), array('confirm' => 'Deseja excluir este credenciamento?','class' => 'linkbtn'));

数组中参数的顺序......