微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决如何将 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 举报,一经查实,本站将立刻删除。