0

我在同一目录 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 消息。

有谁知道为什么会这样?

4

1 回答 1

4

我在我的系统上检查了你的路线,它工作正常,所以我认为错误在其他地方。检查您的控制器类名称是否为Controller_Address,还尝试将此路由作为引导程序中的第一个路由,如文档所述:

重要的是要了解路由按照添加的顺序进行匹配,一旦 URL 与路由匹配,路由本质上就“停止”了,并且永远不会尝试剩余的路由。因为默认路由几乎匹配任何东西,包括一个空的 url,新路由必须放在它之前。

另一件事,与问题无关 - 你真的应该在你的模型中放置验证。控制器不是它的地方;)

于 2012-04-04T06:38:44.393 回答