将网址与标题页匹配

时间:2013-12-12 05:26:15

标签: php kohana kostache

大家好你怎么在kohana 3.3和kostache中做到这一点?

表格

<form method="POST" action="user/login">

<input type="text" name="email" />
<input type="passowrd" name="password" />

</form>

控制器

 public function action_login()
 {
   $user = Auth::instance()->login($this->request->post('email'),$this->request->post('password'));

   if($user)
   {
       $view = Kostache_Layout::factory()
       $layout = new View_Pages_User_Info();

       $this->response->body($this->view->render($layout));
   }
   else
   {
       $this->show_error_page();
   }

 }

课程视图

class View_Pages_User_Info
{
    public $title= "Profile";
}

胡子模板

   <p> This is the Profile Page</p>

到目前为止很好,我现在在个人资料页面,但网址是

localhost/kohana_app/user/login 

而不是

localhost/kohana_app/user/profile

我知道我可以将action_login更改为action_profile以匹配网址和网页标题,但有没有其他方法可以做到这一点?

1 个答案:

答案 0 :(得分:1)

如果登录成功并重定向到个人资料页面,请忘记响应的正文。

HTTP::redirect(Route::get('route that routes to the profile page')->uri(/* Just guessing */'action' => 'profile'));

阅读Post/Redirect/Get


请求的示例路由

Route::set('home', '')
    ->defaults(array(
        'controller' => 'Home',
    ));

Route::set('auth', 'user/<action>', array('action' => 'login|logout'))
    ->defaults(array(
        'controller' => 'User',
    ));

Route::set('user/profile/edit', 'user/profile/edit(/<user>)')
    ->defaults(array(
        'controller' => 'User_Profile', // Controller_User_Profile
        'action' => 'edit',
    ));

Route::set('user/profile/view', 'user/profile(/<action>(/<user>))', array('action' => 'edit'))
    ->defaults(array(
        'controller' => 'User_Profile',
    ));

############

class Controller_User_Profile {

    public function action_index()
    {
        // ...

        $this->action_view($user->username());
    }

    public function action_view($user = NULL)
    {
        if ($user === NULL)
        {
            $user = $this->request->param('user');
        }

        // ...
    }
}

就个人而言,我喜欢将用户发送到仪表板,该仪表板与查看您自己的个人资料不同。

这只是 A 的做法。