0
我想爲屬性頁面動態顯示頁面麪包屑。它應該是這樣的:使用ZF2動態頁面麪包屑執行
Home > Country name > City name > Property name
。
使用屬性ID從數據庫中檢索國家,城市和屬性的名稱。我對查詢沒有任何問題,但是如何將值傳遞給視圖?
下面是我的配置站點地圖:它只返回首頁>物業
return [
'navigation' => [
'default' => [
'home' => [
'label' => 'Home',
'route' => 'home-page',
'pages' => [
'property-page' => [
'label' => 'Property',
'module' => 'application',
'controller' => 'Application\Controller\Property',
'route' => 'property-page',
'action' => 'index'
],
],
],
],
],
];