Table of Contents
回复内容:
然后我再正面回答一下楼主问题,流程如下:
Home Backend Development PHP Tutorial yii2 的model 执行流程是什么

yii2 的model 执行流程是什么

Jun 06, 2016 pm 08:30 PM
model php yii2

之前在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>
Copy after login

然后我再正面回答一下楼主问题,流程如下:

<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>
Copy after login

我勒个去,为了画这个流程图,我专门去看了下markdown的流程图语法。。。一晚上时间就白费了。。。楼主,你要负责

这样写试试:

<code>public function beforeSave($insert)
{
    if (parent::beforeSave($insert)) {
        $this->date = time();
        return true;
    } else {
        return false;
    }
}
</code>
Copy after login

不知道题主是什么困扰,但是你如果是非得不走rules(),可以直接在save()方法指定$runValidationfalse

RTFM

http://www.yiiframework.com/doc-2.0/yii-db-baseactiverecord.html#save(...

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

See all articles