🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# 数据库行为 模型行为用于实现通用功能。 与[特性](https://octobercms.com/docs/database/traits)不同,这些[特性](https://octobercms.com/docs/database/traits)可以直接在类中实现,也可以通过扩展类来实现。您可以[在此处](https://octobercms.com/docs/services/behaviors)阅读有关行为的更多信息。 ### [](https://octobercms.com/docs/database/behaviors#purgeable)可净化的 创建或更新模型时,清除的属性不会保存到数据库中。要清除模型中的属性,请实现该`October.Rain.Database.Behaviors.Purgeable`行为并`$purgeable`使用包含要清除的属性的数组声明一个属性。 ~~~ class User extends Model { public $implement = [ 'October.Rain.Database.Behaviors.Purgeable' ]; /** * @var array List of attributes to purge. */ public $purgeable = []; } ~~~ 您还可以在类中动态实现此行为。 ~~~ /** * Extend the RainLab.User user model to implement the purgeable behavior. */ RainLab\User\Models\User::extend(function($model) { // Implement the purgeable behavior dynamically $model->implement[] = 'October.Rain.Database.Behaviors.Purgeable'; // Declare the purgeable property dynamically for the purgeable behavior to use $model->addDynamicProperty('purgeable', []); }); ~~~ 保存模型时,在触发[模型事件](https://octobercms.com/docs/database/behaviors#model-events)(包括验证)之前,将清除定义的属性。使用`getOriginalPurgeValue`来查找已清除的值。 ~~~ return $user->getOriginalPurgeValue($propertyName); ~~~ ### [](https://octobercms.com/docs/database/behaviors#sortable)可排序 排序的模型将存储一个数字值,`sort_order`该值保持集合中每个单独模型的排序顺序。要存储模型的排序顺序,请实现该`October\Rain\Database\Behaviors\Sortable`行为并确保您的模式已定义供其使用的列(例如:)`$table->integer('sort_order')->default(0);`。 ~~~ class User extends Model { public $implement = [ 'October.Rain.Database.Behaviors.Sortable' ]; } ~~~ 您还可以在类中动态实现此行为。 ~~~ /** * Extend the RainLab.User user model to implement the sortable behavior. */ RainLab\User\Models\User::extend(function($model) { // Implement the sortable behavior dynamically $model->implement[] = 'October.Rain.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]); ~~~ > **注意:**如果在以前已经存在数据(行)的模型中实现此行为,则可能需要先初始化数据集,然后此行为才能正常工作。为此,请手动更新每一行的`sort_order`列,或者对数据运行查询以将记录的`id`列复制到该`sort_order`列(例如`UPDATE myvendor_myplugin_mymodelrecords SET sort_order = id`)。