我有Nav
项目:
[
'label' => 'All',
'url' => ['project/index'],
],
[
'label' => 'Done',
'url' => ['project/index', 'assigned' => 'done'],
],
但是当我去project / index& assigned = done时,他们都有一个active
类。只有当项目的url
严格等于$route
值时,我才能强制附加此课程?
答案 0 :(得分:1)
Nav
小部件的路由和参数匹配$route
时(如果未设置,它将使用当前请求的路由)和$params
(如果未设置),它将使项目处于活动状态,它将使用$ _GET)。
如果路线为project/index
(请查看here),您的第一项将始终有效。
你应该试试这个例子:
[
'label' => 'All',
'url' => ['project/index', 'assigned' => 'not-done'],
],
[
'label' => 'Done',
'url' => ['project/index', 'assigned' => 'done'],
],
答案 1 :(得分:0)
$actionId = $this->context->action->id; // the id of the actual action
$items = [
['label' => 'All', 'active' => $actionId === 'index',
'url' => ['/project/index'],
['label' => 'Done', 'active' => $actionId === 'index'
&& \Yii::$app->request->get('assigned') === 'done',
'url' => ['/project/index', 'assigned' => 'done']]
];