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