cakephp 2.x中的Ajax请求

时间:2013-03-06 07:08:23

标签: ajax cakephp cakephp-2.0 cakephp-ajaxhelper

我正在尝试在cakephp中发送一个简单的ajax请求。我要发送许多按钮的ajax请求。但我只是先尝试​​一个简单的ajax请求。但由于某种原因它不起作用。这就是我到目前为止所做的。这是我的代码。

show.ctp

<?php echo $this->Html->script('jquery', FALSE); ?>

<?php

echo $this->Form->create();
echo $this->Form->input('field', array('id'=>'field'));
echo $this->Js->submit('Send', array(
'before'=>$this->Js->get('#sending')->effect('fadeIn'),
'success'=>$this->Js->get('#sending')->effect('fadeOut'),
'update'=>'#success'
));

?>

<div id='sending' style="display:none"> Counz[dot]gif will be displayed </div>
<div id='success'></div>

控制器

var $name = 'count';

    public $helpers = array('Js' => array('Jquery'));
    //var $helpers = array('Ajax', 'Javascript');
    var $components = array('RequestHandler');

public function show(){
        if($this->RequestHandler->isAjax()){
            $this->render('success', 'ajax'); //ajax tells the layout it should use

        }else{
            $this->set('for_map', $this->count->find('all'));

        }
    }

success.ctp

<p>It's working</p>

默认情况下还有ajax.ctp。

请告诉我我做错了什么。谢谢。 :)

2 个答案:

答案 0 :(得分:0)

最好不要在执行ajax请求时发布给自己。

<强> show.ctp

echo $this->Form->create('Count', array('action'=>'ajaxShow'));

<强>控制器

public function ajaxShow(){

    $this->layout = 'ajax';


    if($this->RequestHandler->isAjax()){
         $this->render('success', 'ajax'); //ajax tells the layout it should use
    }
}

答案 1 :(得分:0)

我知道这个帖子很老,但我只是分享我的答案。您可以只进行正常的ajax通话,例如您的网址是&#39; users / items&#39;类型是GET然后在你的:

<强> UsersController.php

public function items(){
 // some logic to get items
 $this->set('items',$items);
 $this->layout = null; //remove default layout.
 $this->render('ajax/items'); // here I use View/Users/ajax/items.ctp
}

<强> items.ctp

//you can return json
<?php echo json_encode($items); ?>

//or

//your own format
<?php 
 foreach($items as $item){
      //some output
 }
?>

现在items.ctp中的输出将在你的js&#39;成功财产。只要确保你解析返回的json。