dpb75177 2017-08-21 07:05
浏览 169
已采纳

在yii2中将标题页设置为h1

set title page to h1 in yii2?

in view :

$this->title = 'title' ;

and source code :

<title>title</title>
  • 写回答

2条回答 默认 最新

  • dqxyh48864 2017-08-21 07:17
    关注

    In view the value is assigned to $this->title for the use in head and if useful in user view

    <?php
    
       $this->title = $model->id;
    
    ?>
    
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>My Title  </title> <!-- this is for SEO -->
        ...
    </head>
    <body>
        <h1><?= $this->title ?> </h1> <!-- this is for user view -->
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?