在不包含其他文件的情况下刷新内容

时间:2019-01-06 08:00:54

标签: jquery ajax laravel-5

我有一个index.blade.php文件。在其中,我雄辩地获取产品信息,并通过foreach循环进行展示。 现在我想刷新内容而不包含另一个文件。我只想加载带有指定ID(#content)的索引代码。

User.php

   public function product()
   {
     return $this->hasMany(Product::class);
   }

index.blade.php

   <button id='bt1'>update</button>
     <div id='content'>
       @foreach(auth()->user()->product as $product)
        <div>$product->name</div>
       @endforeach
  </div>
  <script>
     $('#content').load('/index.blade.php #content');
  </script>

我想检查是否添加了任何产品。无需刷新页面。

0 个答案:

没有答案