我在同一目录 APP/controller 中有 2 个控制器 account.php 和 address.php。对于第一个控制器 account.php,我对 URI 使用默认路由器,例如:account/create、account/login、account/logout... 在编写第二个控制器时,我想使用 address.php 的所有 URI 以 account/address 开头/。正如您在此处看到的,我使用与帐户控制器相同的 URI 路由器匹配。
我的第一种方法:
// Add new address
Route::set('address', 'account/address/<action>')
->defaults(array(
'controller' => 'address',
'action' => 'index',
));
我的地址控制器
public function before()
{
parent::before();
if ( ! Auth::instance()->logged_in())
{
// Redirect to a login page (or somewhere else).
$this->request->redirect('');
}
}
// nothing here
public function action_index()
{
$this->request->redirect('');
}
// create account
public function action_create()
{
// Create an instance of a model
$profile = new Model_Address();
// received the POST
if (isset($_POST) && Valid::not_empty($_POST))
{
// // validate the form
$post = Validation::factory($_POST)
->rule('firstname', 'not_empty')
->rule('lastname', 'not_empty')
->rule('address', 'not_empty')
->rule('phone', 'not_empty')
->rule('city', 'not_empty')
->rule('state', 'not_empty')
->rule('zip', 'not_empty')
->rule('country', 'not_empty')
->rule('primary_email_address', 'email');
// if the form is valid and the username and password matches
if ($post->check())
{
if($profile->create_profile($_POST))
{
$sent = kohana::message('profile', 'profile_created');
}
} else {
// validation failed, collect the errors
$errors = $post->errors('address');
}
}
// display
$this->template->title = 'Create new address';
$this->template->content = View::factory('address/create')
->bind('post', $post)
->bind('errors', $errors)
->bind('sent', $sent);
}
似乎没问题,但是路由器帐户/地址/创建不起作用。Kohana 为该 URI 抛出 404 消息。
有谁知道为什么会这样?