初学 4.2 想问问Controller中怎么获取URL,和过滤设置
<?php
class UserController extends BaseController {
public function __construct() {
$this->beforeFilter('auth', array('except' => 'getLogin'));
// 为什么跳到http://localhost/login ,
$this->beforeFilter('csrf', array('on' => 'post'));
$this->afterFilter('log', array('only' => array('fooAction', 'barAction')));
}
public function getIndex() {
return '已经登录';
}
public function getReg() {
return '注册页面';
}
public function getLogin() {
//我想跳到这里
//还有我想在这里获取getReg的URL
return '登录页面';
}
public function getLogout() {
Auth::logout();
}
}
beforeFilter 在过滤auth 后跳转路径怎么设置?
我怎么在Controller里获取得路由的URL?
或怎么命名?
2 个回复
any
赞同来自: FiveSay
any
赞同来自: