1. 程式人生 > >Yii2 自帶事件的用法[email protected]

Yii2 自帶事件的用法[email protected]

Model 層

儲存之前的事件示例

public function beforeSave($insert)
{
    if (parent::beforeSave($insert)) {
        // 插入新資料判斷訂單號是否存在
        if (!Order::findModel(['trade_no' => $this->order_trade_no])) {
            throw new Exception("訂單號不存在");
        }
        return true;
    } else {
        return
false; } }

儲存之後的事件示例

public function afterSave($insert, $changedAttributes)
{
    parent::afterSave($insert, $changedAttributes);
    if ($insert) {
        // 插入新資料之後修改訂單狀態
        Order::updateAll(['shipping_status' => Order::SHIPPING_STATUS1, 'shipping_at' => time()], ['trade_no' => $this
->order_trade_no]); } }

刪除之後的事件示例

public function afterDelete()
{
    parent::afterDelete();
}

Model 事件怎麼保證資料事務呢?

新增一下程式碼在 Model 中:

public function transactions()
{
    return [
        self::SCENARIO_DEFAULT => self::OP_INSERT | self::OP_UPDATE | self::OP_DELETE
        // self::SCENARIO_DEFAULT => self::OP_INSERT
]; }

Controller 層

每次請求之前操作示例

/**
 * @param \yii\base\Action $action
 * @return bool
 * @throws \yii\web\BadRequestHttpException
 */
public function beforeAction($action)
{
    if (parent::beforeAction($action)) {
        $this->request = Yii::$app->request;
        Yii::info($this->request->absoluteUrl, '請求地址');
        Yii::info($this->request->rawBody, '請求資料');
        return true;
    } else {
        return false;
    }
}

每次請求之後操作示例

/**
 * @param \yii\base\Action $action
 * @param mixed $result
 * @return array|mixed
 * @throws BusinessException
 */
public function afterAction($action, $result)
{
    Yii::info(\yii\helpers\Json::encode($result), '請求返回結果');
    return $result;
}

待續……