我想有一个CRUD表,具体来说我不需要编辑/删除记录,只有具有过滤结果的部分,它出现在CRUD生成表的顶部,是我的一部分想要有。我的表包含数据库中1个表的数据,但我有一个列没有连接到数据库中的这个或任何其他表(它是一个注释,它是基于表中的一列自动生成的)。我手动生成我的表,但我想添加带过滤的部分。我不知道怎么做。是否可以在Yii2中手动完成,或者我是否必须使用CRUD生成器?
答案 0 :(得分:1)
我没有使用CRUD生成器,因为它没有生成我想要的代码(我认为它也没有生成过滤器?)。我使用的基本模板几乎适合我需要显示的所有网格视图。这是一个可以为您提供过滤器的示例:
use yii\grid\GridView;
/** @var array $userTypes All user types (classes) */
// ...
echo GridView::widget([
'dataProvider' => $modelProvider,
'filterModel' => $model,
'columns' => [
[
'attribute' => 'id',
'format' => 'raw',
'filter' => Html::input('text', 'User[id]', $model->id, ['class' => 'form-control', 'placeholder' => 'Filter ID']),
[
'attribute' => 'type',
'format' => 'raw',
'filter' => Html::activeDropDownList($model, 'type', $userTypes, ['class' => 'form-control', 'prompt' => 'All types']),
],
]);
在这里,我使用2种不同的输入字段类型(文本和下拉列表)。
对于Html::input
,首先是类型(文本),然后是完整的属性名称(模型名称+属性名称),然后是默认值,最后是其他选项。
对于Html::activeDropDownList
,我们首先是模型,然后是属性名称(仅限),项目列表(数组)以及最后的其他选项。
答案 1 :(得分:1)
我猜你在谈论GridView,如果是,那么你可以拥有自己的专栏,没问题。我们按照您提到的那样调用该列comment
如果您使用由Gii生成的基本模板,并且还为该模型生成搜索类,则您comment
为安全属性并添加该代码的代码以便能够对其进行过滤。
如果您可以更详细地了解上述列,可能的值或algorythm,您可能会得到更合适的答案......
另请查看Yii 2.0: Displaying, Sorting and Filtering Model Relations on a GridView
让我们说你的model
被称为Xyz
,因为你没有提供。另外,我将您的表中的列命名为column_from_your_table
,将您的虚拟列命名为comment
在您的模型Xyz
中,您将添加关系(具有特定名称的方法来定义它)
public function getComment()
{
$column_from_your_table = $this->column_from_your_table;
$comment = '';
// your code to specify the relation
// ...
// this is value dislpayed in column grid
return $comment;
}
和XyzSearch.php
\app\models\
你会有这样的事情(编辑你的需求)
<?php
namespace app\models;
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use yii\db\Expression;
/**
* XyzSearch represents the model behind the search form about `app\models\Xyz`.
*/
class XyzSearch extends Xyz
{
public $comment; // your virtual column
/**
* @inheritdoc
*/
public function rules()
{
return [
// add it to safe attributes
[['comment'], 'safe'],
// you will have more rules for your other columns from DB probably
];
}
/**
* @inheritdoc
*/
public function scenarios()
{
// bypass scenarios() implementation in the parent class
return Model::scenarios();
}
/**
* Creates data provider instance with search query applied
*
* @param array $params
*
* @return ActiveDataProvider
*/
public function search($params)
{
$query = Xyz::find();
// add conditions that should always apply here
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
// I dont know your how it is your comment column autogenerated
// or what is the relation, so I give you just basic idea
// your algorythm needs to be able to be rewritten in SQL
// otherwise I dont know how you could possibly sort it
$dataProvider->sort->attributes['comment'] = [
'asc' => [Xyz::tableName().'.column_from_your_table' => SORT_ASC],
'desc' => [Xyz::tableName().'.column_from_your_table' => SORT_DESC],
'default' => SORT_ASC,
];
$this->load($params);
if (!$this->validate()) {
// uncomment the following line if you do not want to return any records when validation fails
// $query->where('0=1');
return $dataProvider;
}
// again, you will have more filtering conditions from your generated code
// then you will add your custom filtering condition
// I dont know your how it is your comment column autogenerated
// or what is the relation, so I give you just basic idea
$query->andFilterWhere(['like', Xyz::tableName().'.column_from_your_table', $this->comment]);
return $dataProvider;
}
}
最后在您的view
文件中添加您的虚拟列
<?php echo GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
// other columns from database
// ...
'comment',
['class' => 'yii\grid\ActionColumn'],
]
]); ?>