Laravel一到许多关系返回零



有两种模型。在我的产品模型中:

// one to many   relationship with images table 
public function images()
{
    return $this->hasMany('Appimage');
}

图像模型

public function product()
{
    return $this->belongsTo('Appproduct');

}

productController

public function productDetail($slug)
{
    $product = product::where([
      ['slug',$slug],
      ['seller_id' ,Auth::id()],
    ])->first();
    //$storagePath = Storage::get(['images']);
    //get the image of that product 
    //$image   = asset('storage/product_images'.$product->images);

    if($product)
    {
      $image    = Storage::url($product->images); // give the image path from product table
      //give images from the image table 
      $product_image   = Appproduct::find(11)->images;
         $arr = array();
          foreach(Appproduct::find($product->id)->images() as $i)
          {
            array($arr,$i->image);
          }
          dd($arr);  // problem returning always null 



      return view('backEnd.seller.product_detail',compact('product','image')); 
    }

问题语句: 在我的控制器中,当我尝试获取特定产品的所有图像时,我会得到 null 。我正在尝试解决这个问题。

图像表迁移

public function up()
{
    Schema::create('images', function (Blueprint $table){
        $table->increments('id');
        $table->unsignedInteger('product_id');
        $table->string('image');
        $table->timestamps();
    });
}

产品表迁移

public function up()
{
    Schema::create('products', function (Blueprint $table) {
        $table->increments('id');
        $table->unsignedInteger('seller_id');
        $table->unsignedInteger('category_id');
        $table->string('product');
        $table->text('discription');
        $table->string('type')->nullable();
        $table->date('date');
        $table->string('images');
        $table->string('slug');
        $table->integer('sold_qty')->default(0);
        $table->timestamps();
    });
}

注意: 我确保在我的图像表中有5个product_id的记录11.请帮助

您必须在数据库中建立关系。您可以通过将其添加到图像迁移中来完成:

$table->foreign('product_id')->references('id')->on('product');

我假设您的模型名称是ProductImage

请检查以下更改是否会给您想要的东西...

return $this->hasMany('AppImage');

请注意,模型名称以大写字母开头,

return $this->belongsTo('AppProduct');

和数据库约束如 @Steve-trap不需要。无论如何,它将引入一个约束,因此您无法为不存在的产品添加图像。

然后在控制器中:

foreach (AppProduct::find($product->id)->images as $image) {
    $arr[] = $image->image;
}

我解决了这个问题:

  1. 将模型名称更改为大写。
  2. 将产品表列名称图像更改为覆盖。
  3. 将方法图像()更改为产品模型中的图片

结论: 如果您使用列名,则不要使用该列名来进行建筑关系。并始终写以大写开头的模型名称。

相关内容

  • 没有找到相关文章

最新更新