关于2.0活动记录的一个问题 [ 2.0 版本 ]
<?php
use yii\easyii\modules\article\api\Article;
use yii\helpers\Url;
$this->title = $article->seo('title', $article->model->title);
$this->params['breadcrumbs'][] = ['label' => 'Articles', 'url' => ['articles/index']];
$this->params['breadcrumbs'][] = ['label' => $article->cat->title, 'url' => ['articles/cat', 'slug' => $article->cat->slug]];
$this->params['breadcrumbs'][] = $article->model->title;
?>
<h1><?= $article->seo('h1', $article->title) ?></h1>
<?= $article->text ?>
<?php if(count($article->photos)) : ?>
<div>
<h4>Photos</h4>
<?php foreach($article->photos as $photo) : ?>
<?= $photo->box(100, 100) ?>
<?php endforeach;?>
<?php Article::plugin() ?>
</div>
<br/>
<?php endif; ?>
<p>
<?php foreach($article->tags as $tag) : ?>
<a href="<?= Url::to(['/articles/tag', 'slug' => $article->cat->slug, 'tag' => $tag]) ?>" class="label label-info"><?= $tag ?></a>
<?php endforeach; ?>
</p>
<small class="text-muted">Views: <?= $article->views?></small>
这是yii2的 https://github.com/noumo/easyii-shop/blob/master/app/views/articles/view.php 我想问下他这个seo是关联的表 为什么是这样的用法 传的两个参数 第一个是关联表的属性吗? 第2个是什么? 还有上面 $this->title = $article->seo('title', $article->model->title); 为什么取title的时候前面还有个model 是yii2自身的?
共 2 个回答
pmdforth
注册时间:2015-06-20
最后登录:2015-06-20
在线时长:0小时19分
最后登录:2015-06-20
在线时长:0小时19分
- 粉丝0
- 金钱0
- 威望0
- 积分0