yii2 的model 执行流程是什么
之前在yii1里
提交数据是$model->load()
$model->save()
比如我要把 date类型转为int类型
会在 beforesave()里 $this->date = time()
转换
但是在yii2里
beforeSave(){
$this->date = time()
}
会先走validate的 rule方法
就是说 没有进beforeSave转换之前就先执行了, 那beforeSave还有毛用了
回复内容:
之前在yii1里
提交数据是$model->load()
$model->save()
比如我要把 date类型转为int类型
会在 beforesave()里 $this->date = time()
转换
但是在yii2里
beforeSave(){
$this->date = time()
}
会先走validate的 rule方法
就是说 没有进beforeSave转换之前就先执行了, 那beforeSave还有毛用了
如果楼主是单纯想要给时间字段赋值,建议在模型里添加如下代码:
<code>php</code><code>public function behaviors() { return [ [ 'class' => TimestampBehavior::className(), 'attributes' => [ ActiveRecord::EVENT_BEFORE_INSERT => ['created_at','updated_at'], ActiveRecord::EVENT_BEFORE_UPDATE => 'updated_at' ], ], } </code>
然后我再正面回答一下楼主问题,流程如下:
<code>flow</code><code>st=>start: $model->save(runValidation) e=>end: 整个请求结束 runValidation=>condition: runValidation? beforeValidate=>operation: beforeValidate validate=>operation: validate(rules在这儿执行) afterValidate=>operation: afterValidate beforeSave=>operation: beforeSave save=>operation: save afterSave=>operation: afterSave st->runValidation runValidation(yes,right)->beforeValidate runValidation(no)->beforeSave beforeValidate->validate->afterValidate(left)->beforeSave beforeSave->save->afterSave->e </code>
我勒个去,为了画这个流程图,我专门去看了下
markdown
的流程图语法。。。一晚上时间就白费了。。。楼主,你要负责
这样写试试:
<code>public function beforeSave($insert) { if (parent::beforeSave($insert)) { $this->date = time(); return true; } else { return false; } } </code>
不知道题主是什么困扰,但是你如果是非得不走rules()
,可以直接在save()
方法指定$runValidation
为false
RTFM
http://www.yiiframework.com/doc-2.0/yii-db-baseactiverecord.html#save(...

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
