我有一个index.blade.php文件。在其中,我雄辩地获取产品信息,并通过foreach循环进行展示。 现在我想刷新内容而不包含另一个文件。我只想加载带有指定ID(#content)的索引代码。
public function product()
{
return $this->hasMany(Product::class);
}
<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>
我想检查是否添加了任何产品。无需刷新页面。