我想将数据发布到 CakePHP 中的控制器,但使用 JQuery 发布总是会导致错误,我不知道为什么。
在我看来,我有以下方法,将数据发布到控制器页面
function RenameNode(name, id)
{
$.ajax({
type: "POST",
url: '<?php echo Router::url(array('controller' => 'categories', 'action' => 'rename')); ?>',
data: {
id: id,
name: name
},
success: function(){
}
});
}
我的控制器方法如下所示:
public function rename($id = null, $name = null) {
if ($this->request->is('get')) {
throw new MethodNotAllowedException();
}
if(!$id)
{
$id = @$this->request->query('id');
}
if(!$name)
{
$name = @$this->request->query('name');
}
if (!$id) {
throw new NotFoundException(__('No id'));
}
$category = $this->Category->findById($id);
if (!$category) {
throw new NotFoundException(__('Invalid category'));
}
$this->autoRender = false;
$this->layout = 'ajax';
if ($this->request->is('post') || $this->request->is('put')) {
$this->Category->id = $id;
$this->request->data['Category']['name'] = $name;
if ($this->Category->save($this->request->data)) {
$this->Session->setFlash(__('The category has been updated.'));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(__('Unable to update the category.'));
}
}
}
当我使用 jquery 方法发帖时,我的日志中不断收到以下错误消息:
2013-05-20 11:34:25 Error: [NotFoundException] No id
Request URL: /cakephp/categories/rename
Stack Trace:
#0 [internal function]: CategoriesController->rename()
当我评论 get 和 post 的请求检查时,当我使用 /categories/rename?id=1&name=test 调用它时,控制器本身可以正常工作。由于某种原因,ajax 方式不起作用,但我不知道为什么。有任何想法吗?
更新
我通过更改以下代码来修复它,现在它可以完美运行
if(!$id)
{
$id = @$this->request->query('id');
}
if(!$name)
{
$name = @$this->request->query('name');
}
至
if(!$id)
{
$id = @$this->request->data('id');
}
if(!$name)
{
$name = @$this->request->data('name');
}