duankuaiwang2706 2019-01-21 10:58
浏览 171
已采纳

Yii2使用数据库创建动态导航

I'm implementing a dynamic navbar in Yii2 which displays a dropdown menu picking items from the database. Now, the problem is that when I call the function in which I fill the array, the system crash with the error:

"Invalid argument supplied for foreach()"

since it doesn't find the variable with the array of items. I don't know which controller should pass the arguments to the main view, I just need an array of all items in a data model (i.e. Course).

I've tried out with this but still doesn't work.

  /* @var $courses \app\models\Course[] */

layouts/main

function items($courses)
{
    $items = [];
    foreach ($courses as $course) {
        array_push($items, ['label' => $course->title, 'url' => 
        Url::to(['course', 'id' => $course->id])]);
    }
    return $items;
}

$menuItems = [
// other items ...
    'label' => 'Courses', 'items' => items($courses)
];

echo Nav::widget([
    'options' => ['class' => 'uk-navbar-item'],
    'encodeLabels' => false,
    'items' => $menuItems
 ]);

How can I pass the $courses variable to the layouts/main view? Thanks everyone in advance.

  • 写回答

1条回答 默认 最新

  • douchendan0040 2019-01-21 14:47
    关注

    You should extract this code into widget:

    class MainMenu extends Widget {
    
        public function run() {
            echo Nav::widget([
                'options' => ['class' => 'uk-navbar-item'],
                'encodeLabels' => false,
                'items' => $this->getItems(),
            ]);
        }
    
        protected function getItems() {
            return [
                // other items ...
                ['label' => 'Courses', 'items' => $this->getCoursesItems()],
            ];
        }
    
        protected function getCoursesItems() {
            $items = [];
            foreach (Course::find()->all() as $course) {
                $items[] = [
                    'label' => $course->title,
                    'url' => Url::to(['/course', 'id' => $course->id]),
                ];
            }
            return $items;
        }
    }
    

    Then in your layout you're just calling:

    <?= MainMenu::widget() ?>
    

    In this way you can keep your controller and view clean.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办