2

我想将数据发布到 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');
    }
4

3 回答 3

4

您没有在您发布到的 URL 中包含id和/或;name

echo Router::url(array('controller' => 'categories', 'action' => 'rename'));

会输出;

/categories/rename

但你期待

/categories/rename/1/test

或者

/categories/rename?id=1&name=test

将 AJAX 代码中的 URL 更改为:

echo Router::url(array(
   'controller' => 'categories',
   'action' => 'rename',
   0 => $this->request->params['pass'][0],
   1 => $this->request->params['pass'][1]
));

哪个应该输出正确的 url,包含原始 id请求和name当前请求(例如 /categories/rename/123/oldname)

于 2013-05-20T12:02:50.017 回答
0

使用类似的东西

data = 'name='+name+'&id='id'';

$.ajax({

    type:'post', 

    url: '/categories/rename',

    data: data

});

并在控制器功能中

$name=$_POST[name];

$id=$_POST[id];
于 2013-05-20T12:17:33.283 回答
-1
$('a.ajax-delete-pdf').on('click', function (event) {
    event.preventDefault();
    var id = $(this).data('id');
    $.ajax(
        {
            url: webroot + 'productos/ajax_eliminar_pdf/' + id ,
            async : false,
            success: function(respuesta)
            {
                if(respuesta == 'Borrado')
                {
                    $(this).parent().toggle();
                }
            }
        });
});
于 2014-09-29T02:31:19.437 回答