Cakephp重定向不适用于jquery mobile

时间:2014-12-15 10:06:12

标签: cakephp jquery-mobile redirect requesthandler

我试图使用CakePhp和JQuery Mobile相结合。 一般情况下它很好用,但是使用从一个控制器重定向到另一个控制器时遇到了很大的问题。

特别是因为我添加了RequestHandler。

我认为在这种情况下的问题是,Jquery Mobile期望整个页面字符串,但控制器只是提供视图。

有没有什么方法可以使用jquery mobile来重定向功能?

在这种情况下,我喜欢从Orderheads重定向到Orderpositions

控制器订单头

    if ($this->request->is ( 'post' )) {
        $this->Orderhead->create ();
        if ($this->Orderhead->saveAll ( $this->request->data,array (
                        'deep' => true 
                ))) {
            $orderId = $this->Orderhead->findByOrdernumber( $this->request->data['Orderhead']['ordernumber']);

            $id =$orderId['Orderhead']['id'];
            $this->Session->setFlash ( __ ( 'The orderhead has been saved.' ) );


            return $this->redirect ( array (
                    'controller' => 'orderpositions', 
                    'action' => 'add', $id
            ) );
        } else {
            $this->Session->setFlash ( __ ( 'The orderhead could not be saved. Please, try again.' ) );
        }
    }

控制器订单位置

public $components = array (
        'Paginator',
        'Session',
        'RequestHandler' 
);

public function add($id = null) {
    if ($this->request->is ( 'ajax' )) {
        if ($this->RequestHandler->isAjax ()) {
            Configure::write ( 'debug', 0 );
        }
        if (! empty ( $this->data )) {
            $this->autoRender = false;
            $this->Orderposition->create ();
            if ($this->Orderposition->save ( $this->request->data )) {
                echo 'Record has been added';
            } else {
                echo 'Error while adding record';
            }
        }
    } else {
        $this->loadModel ( 'Orderhead' );
        if ($this->Orderhead->exists ( $id )) {
            $orderInformation = $this->Orderhead->findById ( $id );
        } else {
            throw new NotFoundException ( __ ( 'Invalid order id does not exists' ) );
        }
        $this->set ( compact ( 'orderInformation' ) );
    }
}

1 个答案:

答案 0 :(得分:1)

好的,我自己解决了这个问题。

我是怎么想的,问题发生在JQuery Mobile Site上。 JQuery Mobile通常使用Ajax进行链接。

这是或者更好地说是问题,结合cakephp flowconzept,它无法工作。 因为Jquery总是期待整个页面(信息)。这就是为什么我所有的链接选项rel =' external'工作完美。

顺便说一下。这种行为是您需要jQuery-Mobile-Subpage-Widget来使用多页的原因。

但回到主题,为了解决我使用controllers->重定向功能的问题,我只需要添加Data-Ajax =' false' cakephp Form-Create函数的options参数的选项。

如果您设置该参数,则链接会设置整页请求 ajax-request。

示例:

<?php
    echo $this->Form->create('Contactperson', array(
                            'data-ajax' => 'false'));

    echo $this->Form->input('name');
    echo $this->Form->input('surname');
    echo $this->Form->input('email');

    echo $this->Form->end(__('Submit'));
?>

我希望这可以帮助其他有同样问题的人,我浪费了他妈的很多时间。