我希望我的网址从这里改变
/examinations/getchoices/page:2
到此
/examinations/getchoices/item/2
我想知道该怎么做。我已经尝试过更换routes.php。我在this site中尝试了这个教程。单击上一个或下一个链接时,页面内容不会更改。
这就是我在网址中得到的结果
/examinations/getchoices/ 2/ 2
我的蛋糕版本是2.1。
非常感谢您的帮助。我已经坚持了2天了。谢谢。
答案 0 :(得分:0)
您可以定义自定义路线。
http://book.cakephp.org/2.0/en/development/routing.html
e.g。
Router::connect(
' /examinations/getchoices/item/:number',
array('controller' => 'examinations', 'action' => 'getchoices'),
array('pass' => array('number'))
);
让我知道我是否可以为您提供更多帮助