Laravel Eloquent连载:如何重命名属性?

Laravel Eloquent Serialization: how to rename property?

例如,我有扩展 Eloquent 的用户模型。在数据库 table 中,列名是 user_id

阅读后如何将结果输出为'userId'?

使用属性访问器添加单个 "aliases"

您可以使用 attribute accessors 创建 "new attributes":

public function getUserIdAttribute(){
    return $this->attributes['user_id'];
}

这允许您以这种方式访问​​值:$user->userId

现在让我们将值添加到数组/JSON转换:

protected $appends = array('userId');

终于把丑藏起来了user_id:

protected $hidden = array('user_id');


转换为数组时转换所有属性名称/JSON

在将模型转换为数组或JSON字符串时,您还可以使用toArray()更改所有属性名称。

public function toArray(){
    $array = parent::toArray();
    $camelArray = array();
    foreach($array as $name => $value){
        $camelArray[camel_case($name)] = $value;
    }
    return $camelArray;
}

我是这样做的

protected $remap_attrs = ['old_name' => 'new_name'];
public function toArray(){
    $array = parent::toArray();
    foreach($this->remap_attrs as $key => $new_key) {
        if(array_key_exists($key, $array)) {
            $array[$new_key] = $array[$key];
            unset($array[$key]);
        }
    }
    return $array;
}