2012-02-29 18 views
2

I持って私のアプリでは、次の二つの経路:ルーティングが動作していない

Router::connect('/posts/:id', 
        array('controller' => 'posts', 'action' => 'view'), 
        array('id' => '[A-Za-z0-9\._-]+', 'pass' => array('id'))); 

    Router::connect('/posts/:slug-:id', 
        array('controller' => 'posts', 'action' => 'view'), 
        array(
         'id' => '[A-Za-z0-9\._-]+', 
         'slug' => '[A-Za-z0-9\._-]+', 
         'pass' => array('id', 'slug') 
        )); 

と例のURLは次のようになります。

/posts/This_is_the_first_post-1

それが表示されるでしょうが私が/にidの前にURL -を変えればそれはうまくいくでしょう:/何が問題なのですか?正規表現はそれを引き起こしていますか?

function view ($id = null, $slug = null) 
    { 
     $post = $this->Post->find('first',array('contain'=>array('User'=>'Profile'),'conditions'=>array('Post.id'=>$id))); 

     if (!$post) 
     { 
      throw new NotFoundException('404'); 
     } 
     else if($post['Post']['status'] == '0') // 0=draft 1=closed 2=open 
     { 
      if($post['Post']['user_id'] == $this->Auth->user('id')) 
      { 
       $this->Session->setFlash('Your post has NOT been published yet'); 
      } 
      else 
      { 
       throw new NotFoundException('404'); 
      } 
     } 

     if (Inflector::slug($post['Post']['title']) != $slug || $slug = null) 
     { 
      $this->redirect(array('id'=>$post['Post']['id'],'slug'=>Inflector::slug($post['Post']['title']))); 
     } 

     $this->set(compact('post')); 
    } 

答えて

2

それは正規表現によるものとなります。

はここでビューのための私の方法です。最初のルートでは-を許可していますので、それ自体が2番目のルートと区別されない場合があります。:id-に従うことになっています。そのため

Router::connect('/posts/:id', 
       array('controller' => 'posts', 'action' => 'view'), 
       array('id' => '[A-Za-z0-9\._]+', 'pass' => array('id'))); 
       //---Removed hyphen-----^^^^^^ 

Router::connect('/posts/:slug-:id', 
       array('controller' => 'posts', 'action' => 'view'), 
       array(
        'id' => '[A-Za-z0-9\._]+', 
       //---Removed hyphen-----^^^^^^ 
        'slug' => '[A-Za-z0-9\._]+', 
       //---Removed hyphen-----^^^^^^ 
        'pass' => array('id', 'slug') 
       )); 
+0

乾杯:) – Cameron

+0

私は実際に質問をする前に、ハイフンを自分自身を削除しようとしたが、それはまだ破った:/は間違ったものか何かを削除する必要があります。もう一度乾杯。 – Cameron

関連する問題