在Laravel 5.8中,我有一个自定义属性,可以通过Gravatar恢复化身。这是用户模型中的属性。
/**
* @return string
*/
public function getAvatarAttribute()
{
return sprintf('%s%s%s', 'https://secure.gravatar.com/avatar/', md5(strtolower(trim($this->email))), '?s=200');
}
在“帖子/用户”模型中,我有一个EmiratesTo / hasMany关系。
发布模型:
/**
* @return BelongsTo
*/
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
用户模型:
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Notifications\Notifiable;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* @var string
*/
protected $table = 'users';
/**
* @var array
*/
protected $fillable = [
'username',
'email',
'password',
'api_token',
];
/**
* @var array
*/
protected $hidden = [
'password',
'remember_token',
'api_token',
];
/**
* @var array
*/
protected $casts = [
'email_verified_at' => 'datetime',
'admin' => 'boolean',
];
/**
* @return string
*/
public function getRouteKeyName()
{
return 'username';
}
/**
* @return HasMany
*/
public function posts(): HasMany
{
return $this->hasMany(Post::class);
}
/**
* @return string
*/
public function getAvatarAttribute()
{
return sprintf('%s%s%s', 'https://secure.gravatar.com/avatar/', md5(strtolower(trim($this->email))), '?s=200');
}
}
我通过路线的网址传递帖子:
Route::get('post/{post}', 'BlogController@post');
我想通过帖子检索头像属性。只有,我恢复为空。而且我不知道它的来源。
public function post(Post $post)
{
dd($post->user); // user model without appends attributes
dd($post->user->avatar); // null
}
答案 0 :(得分:0)
我发现了问题,我使用了 Illuminate ( Illuminate \ Foundation \ Auth \ User )中的 User ,而不是我的 User < / strong>模型。