我想更改默认文本“Home”以及home的URL。 在搜索时我发现需要设置homeUrl的建议,但我不知道在哪里设置它。 如果需要,请索取代码。
答案 0 :(得分:1)
您需要配置$homeLink
属性:
echo Breadcrumbs::widget([
'homeLink' => [
'label' => 'My name',
'url' => '/my/url',
],
'links' => [
// your items
],
// rest of widget config
]);
答案 1 :(得分:-1)
简单地说,用于在面包屑小部件中更改home的URL 1.进入配置文件夹 2.打开main.php 并添加一个新字段作为“ homeUrl” =>“您的URL”作为回报。
return [
.....
'homeUrl' => 'index.php?r=main%2Fdashboard',
......