我有像下面的Django代码,我正在动态获取连接的设备详细信息,我正在模板中更新。我得到了我想要的东西,但我想每次刷新以了解是否有任何新设备连接。
这是我的观看代码:
class UserDashBoard(LoginRequiredMixin, TemplateView):
def get_context_data(self, **kwargs):
context = super(UserDashBoard, self).get_context_data(**kwargs)
context['total_devices'] = get_device_mac_details(cmd='iw dev wlan0 station dump |grep Station |wc -l')
return context
以下是我的模板:
<table class="table">
<tr>
<th class="text-left">MAC Id</th>
</tr>
{% for device in total_devices %}
<tr>
<td class="text-left">{{ device }}</td>
</tr>
{% endfor %}
</table>
如何在不刷新页面的情况下获取详细信息?