web-dev-qa-db-ja.com

Zend:パラメーターを使用してアクションにリダイレクトする

私はzendフレームワークを使用しています。次のステートメントを使用して、別のアクションにリダイレクトしています。

$this->_helper->redirector('some_action');

上記のステートメントは完全に機能し、「some_action」が呼び出されます。ここで、いくつかのパラメーターをこのように「some_action」に渡します。

some_action?uname=username&[email protected]

そして、呼び出されたアクションでパラメーターを取得する方法。通常、次のようにします。

$userName = $_REQUEST['uname'];
$usermail = $_REQUEST['umail']; 

これを実行するには?サンプルコードをご覧ください。ありがとう

32
Naveed

Zend_Controller_Action::redirect()メソッドを使用します(これはSarfrazのヘルパーメソッドに渡されます)

_$this->redirect('/module/controller/action/username/robin/email/[email protected]');
_

注:_redirect()メソッドは、Zend Framework 1.7で非推奨になりました。代わりにredirect()を使用してください。

そして、呼び出されたアクションで:

_$username = $this->_getParam('username');
$email = $this->_getParam('email');
_

_getParam()は、パラメーターが見つからない場合のデフォルトとして変数に設定される2番目のオプションの引数を取ります。

29

リダイレクタで試すことができます:

$params = array('user' => $user, 'mail' => $mail);
$this->_helper->redirector($action, $controller, $module, $params);
50
armandfp

これを試してみてください:

  $this->_redirector->gotoUrl('/my-controller/my-action/param1/test/param2/test2');
7
Sarfraz

Useridに$ params say likeを追加することもできます

public function indexAction ()
{
    $auth = Zend_Auth::getInstance();
    if ($auth->hasIdentity()) {
        // Identity exists; get it
        $identity = $auth->getIdentity();
        $this->_redirect('/user/profile/' . $identity->user_id);
    } else {
        $this->_redirect('/user');
    }
}

言及するのを忘れましたが、もちろんこれは、$ paramを受け入れるためのルーティング設定があることを前提としています。例として、上記の例でリダイレクトされるページのルーティングは次のようになります。

/application/configs/application.ini

resources.router.routes.user-profile.route = /user/profile/:id
resources.router.routes.user-profile.defaults.module = default
resources.router.routes.user-profile.defaults.controller = user
resources.router.routes.user-profile.defaults.action = profile

4
Jsmith

Param sortaを取得する方法は、どこにいるかによって異なります。

ここでやりたいことを達成するためにリクエスト$ paramをキャッチする必要はありません。 FlashMessengerヘルパーを使用して、スタックにメッセージを追加しているだけです。次に、メッセージを表示するアクション内のメッセージを取得し、successActionで行うようにビューに割り当てます。次のようにコントローラーで割り当てることで、$ varまたはデータの配列を渡すことができることに注意してください。 $ this-> varとしてアクセスされるビュー内。

あなたがログインについて尋ねたので、私は私が通常どのようにそれをするか示します。それが最善の方法ではありません。

LoginControllerのインデックスビューには次の形式があります。

    public function indexAction() {
    $form = new Zfcms_Form_Login;
    $this->view->form = $form;
     /*check for valid input
       authenticate using adapter
       persist user record to session
       redirect to original request URL if present*/
    if ($this->getRequest()->isPost()) {
        if ($form->isValid($this->getRequest()->getPost())) {
            $values = $form->getValues();

            $authAdapter = $this->getAuthAdapter();

            # get the username and password from the form
            $username = $values['username'];
            $password = $values['password'];

            # pass to the adapter the submitted username and password
            $authAdapter->setIdentity($username)
                    ->setCredential($password);

            $auth = Zend_Auth::getInstance();
            $result = $auth->authenticate($authAdapter);

            if ($result->isValid()) {

                # all info about this user from the login table
                # ommit only the password, we don't need that
                $userInfo = $authAdapter->getResultRowObject(null, 'password');

                # the default storage is a session with namespace Zend_Auth
                $authStorage = $auth->getStorage();
                $authStorage->write($userInfo);


                $session = new Zend_Session_Namespace('zfcms.auth');
                if (isset($session->requestURL)) {
                    $url = $session->requestURL;
                    unset($session->requestURL);
                    $this->_redirect($url);
                } else {
                    $this->_helper->getHelper('FlashMessenger')
                            ->addMessage('You were successfully logged in as ' . $userInfo->username);
                    $this->_redirect('/login/success');
                }
            } else {
                $this->view->message = 'You could not be logged in. Please try again.';
            }
        }
    }
}

成功アクションでは、次のことを行います。

public function successAction() {
    if ($this->_helper->getHelper('FlashMessenger')->getMessages()) {
        $this->view->messages = $this->_helper
                        ->getHelper('FlashMessenger')
                        ->getMessages();
    } else {
        $this->_redirect('/login/success');
    }
}

ビュースクリプトでは、以下のようなことができます。この方法で行う理由は、コントローラーで1つのメッセージのみを渡すことがあるためです。この場合は、単に次のように使用します。

$this->view->message = 'message goes here';

次に、ビューで設定されている場合は両方をキャッチします。

<?php 
    if(isset($this->message) || isset($this->messages)):
?>

<?php
if(is_array($this->messages))
{
    echo implode($this->messages);
} else {
    echo $this->message;
}?>

<?php 
endif 
?>
1
Jsmith