私のhtmlページには、自分のデータベースから来たデータを表示するテーブルがあります。すべてのページを更新せずにデータベースが更新されたときに、データテーブルをリフレッシュする必要があります。私はPHPフレームワークLaravelを使用しています。データベース更新後のデータテーブルの更新
<table id="example" class="table">
<thead>
<tr class="headings">
<th>ID </th>
<th>first name </th>
<th>last name </th>
<th>E-mail </th>
<th>birthday </th>
</tr>
</thead>
<tbody>
@foreach ($users as $user)
<tr class="even pointer">
<td class=" ">{{ $user->id }}</td>
<td class=" ">{{ $user->name }}</td>
<td class=" ">{{ $user->name2 }}</td>
<td class=" ">{{ $user->email }}</td>
<td class=" ">{{ $user->birthday }}</td>
</tr>
@endforeach
</tbody>
</table>
データベースにクエリを送信し、それを表示するには、このようなjQeury/Vuejsなどの任意のJavaScriptフレームワークを使用してください。 –
どのようにそれを行うことができます、あなたは私に例を与えることができます – bildstein