kfreiman/yii2-json-attribute-behavior

用于编码和解码存储的JSON属性的Yii2行为

v0.1 2016-02-10 11:01 UTC

This package is not auto-updated.

Last update: 2024-09-23 12:27:09 UTC


README

用于编码和解码存储的JSON属性的Yii2行为

安装

composer require kfreiman/yii2-json-attribute-behavior "dev-master"

使用

public function behaviors()
{
    return [
        'jsonAttributes' => [
            'class' => JsonAttributeBehavior::className(),
            'attributes' => [
                'attrJson' => 'attr'
            ],
        ],
    ];
}