如何将 html 表格行中的数据发送到后端

问题描述

我正在尝试使用 Django 制作一个简单的图书馆管理应用程序。我不知道如何将 HTML 表格行中的数据发送到后端以存储到数据库

我知道我可以使用 JSON,但我认为有一种更复杂的方法......

这是代码请帮助我感谢...

{% extends 'home.html' %}

{% block b %}
<div class="container">
    

<table class="table">
  <thead>
    <tr>
      <th scope="col">book_name</th>
      <th scope="col">writer_name</th>
      <th scope="col">category</th>
      <th scope="col">Sub_category</th>
      <th scope="col">price</th>
      <th scope="col">quntity</th>
      
    </tr>
  </thead>
  <tbody id="table">
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>otto</td>
      <td>@mdo</td>
      <td>123</td>
      <td>1w3</td>
    </tr>

  </tbody>
</table>
    <input type="button" class="btn btn-primary" value="store"/>
</div>


<hr />
<div class="container">
  {{ form}}  
  <input type="button" class="btn btn-primary" value="orderd" id="orderd" />

</div>


解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)