数据库:行为
模型行为用于实现通用功能。不像Traits 这些可以直接在类中实现,也可以通过扩展类来实现。您可以阅读有关行为的更多信息here.
Purgeable
创建或更新模型时,清除的属性不会保存到数据库中。清除
模型中的属性,实现Winter.Storm.Database.Behaviors.Purgeable
行为和声明
A$purgeable
属性与包含要清除的属性的数组。
class User extends Model
{
public $implement = [
'Winter.Storm.Database.Behaviors.Purgeable'
];
/**
* @var array List of attributes to purge.
*/
public $purgeable = [];
}
您还可以在类中动态实现此行为。
/**
* Extend the Winter.User user model to implement the purgeable behavior.
*/
Winter\User\Models\User::extend(function($model) {
// Implement the purgeable behavior dynamically
$model->implement[] = 'Winter.Storm.Database.Behaviors.Purgeable';
// Declare the purgeable property dynamically for the purgeable behavior to use
$model->addDynamicProperty('purgeable', []);
});
保存模型时将清除定义的属性,然后再模型事件
被触发,包括验证。使用getOriginalPurgeValue
找到一个被清除的值。
return $user->getOriginalPurgeValue($propertyName);
Sortable
排序后的模型将存储一个数字值sort_order
它维护集合中每个单独模型的排序顺序。要为您的模型存储排序顺序,请实现Winter\Storm\Database\Behaviors\Sortable
行为并确保您的模式定义了一个列供其使用(例如:$table->integer('sort_order')->default(0);
).
class User extends Model
{
public $implement = [
'Winter.Storm.Database.Behaviors.Sortable'
];
}
您还可以在类中动态实现此行为。
/**
* Extend the Winter.User user model to implement the sortable behavior.
*/
Winter\User\Models\User::extend(function($model) {
// Implement the sortable behavior dynamically
$model->implement[] = 'Winter.Storm.Database.Behaviors.Sortable';
});
您可以通过定义SORT_ORDER
持续的:
const SORT_ORDER = 'my_sort_order_column';
使用setSortableOrder
方法在单个记录或多个记录上设置订单。
// Sets the order of the user to 1...
$user->setSortableOrder($user->id, 1);
// Sets the order of records 1, 2, 3 to 3, 2, 1 respectively...
$user->setSortableOrder([1, 2, 3], [3, 2, 1]);
NOTE: 如果在先前已存在数据(行)的模型中实现此行为,则可能需要先初始化数据集,然后此行为才能正常工作。为此,要么手动更新每一行的
sort_order
列或对数据运行查询以复制记录的id
列到sort_order
专栏(例如UPDATE myvendor_myplugin_mymodelrecords SET sort_order = id
).