field($model,'title')->textInput(['maxlenth'=>true])?> 加上就错,跪求
field($model,'title')->textInput(['maxlenth'=>true])?>
救命 我也是加了这一段,报错!!!!
报错:ReflectionException Class title does not exist
大神们 怎么没有找到 title 如何破。
我也是一加上就错 ,前面都是好好的。
<?php
/**
* Created by PhpStorm.
* User: mac
* Date: 2017/7/31
* Time: 16:12
*/
$this->title = "创建";
$this->params['breadcrumbs'][] = ['label'=>'文章','url'=>['post/index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="row">
<div class="col-lg-9">
<div class="panel-title box-title">
<span>创建文章</span>
</div>
<div class="panel-body">
<?php $from = \yii\bootstrap\ActiveForm::begin()?>
<?=$from->field($model,'title')->textInput(['maxlenth'=>true])?>
<?php \yii\bootstrap\ActiveForm::end()?>
</div>
</div>
<div class="col-lg-3">
</div>
</div>