php – Laravel Eloquent with() – >返回null

前端之家收集整理的这篇文章主要介绍了php – Laravel Eloquent with() – >返回null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用Eloquent来获得一个具有brand_id列的特定产品,该列映射到品牌表,品牌阵列将变回空白.

这里有什么明显的东西需要改变吗?

$product = Product::with('images')->with('brand')->select($fields)->where('display','=',1)->find($id);

//产品型号

class Product extends Eloquent {
    ...
    public function brand()
    {
        return $this->belongsTo('Brand');
    }

//品牌模型

class Brand extends Eloquent {
...
public function products()
{
    return $this->hasMany('Product');
}
你有这个:
$product = Product::with('images','brand')
                  ->select($fields)
                  ->where('display',1)
                  ->find($id);

你得到的品牌为null,可能是因为你有一些特定的字段,很可能你没有从product表中选择foreing_key来创建与Brand的关系,所以如果你的products表包含foreign_key(可能是brand_id)品牌表然后你也必须从products表中选择那个foreign_key.所以,只需在$fields变量中添加foreign_key / brand_id即可.如果没有关系构建器密钥(FK),则不会加载Brand.

原文链接:https://www.f2er.com/laravel/137610.html

猜你在找的Laravel相关文章