1

我决定在 Yii2 上使用 YII 移动逻辑,并且路由条目出现问题。

//yii1
'image/<id:\d+>*'   => array('image/get'),

但它不适用于 YII2

//yii2 
'image/<id:\d+>*'   => 'image/get',

如何编写获取函数的路径需要可变数量的参数?

4

1 回答 1

0

尝试

'image'   => 'image/get',

并在 ImageController 中以正常方式获取参数

$id = \Yii::$app->request->post('id');

我已经定义

'my-account' => 'my-account/index',

链接 /my-account?id=5&foo=bar 工作得很好。

于 2014-10-06T01:09:07.870 回答