如何在 Django 中向 bootstrap4 添加松脆的表单?

Posted

技术标签:

【中文标题】如何在 Django 中向 bootstrap4 添加松脆的表单?【英文标题】:How to add crispy forms to bootstrap4 in Django? 【发布时间】:2022-01-05 10:53:55 【问题描述】:

我在将引导上传表单与 django 表单(脆表单)结合起来时遇到了麻烦。知道如何将酥脆的表单放入引导表单。

这是 django 脆皮表格

        <form method="post" enctype="multipart/form-data">
              % csrf_token %
               form|crispy 
              <button type="submit" class="btn btn-primary">Upload and Download!</button>
        </form>

这是我想放脆形式的引导形式。

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

<div class="custom-file">
  <input type="file" class="custom-file-input" id="customFile">
  <label class="custom-file-label" for="customFile">Choose file</label>
</div>

知道如何将这两者结合起来吗?

【问题讨论】:

你的 forms.py 是什么样的? 【参考方案1】:

你可以这样做

        <form action="." method='POST' enctype="multipart/form-data">
        % csrf_token %
    <div class="custom-file">
  <input type="file" class="custom-file-input" name="file" id="customFile">
  <label class="custom-file-label" for="customFile">Choose file</label>
</div> <br><br>
    <button type="submit" class="btn btn-primary">Upload and Download!</button>
    </form>

并将其添加到页面的头部

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">

在你的views.py中获取文件,你可以使用files = request.Files['file']

【讨论】:

完美,非常感谢!

以上是关于如何在 Django 中向 bootstrap4 添加松脆的表单?的主要内容,如果未能解决你的问题,请参考以下文章

如何在Django中向Python路径添加位置

如何在 django 中使用 bootstrap4 设置酥脆的表格?

如何在 Django 中向多对多关系中添加字段?

如何在 Django 中向 ModelForm 添加外键字段?

如何在 Django 中向模型添加临时字段?

如何在 Django 中向 ModelForm 添加非模型字段?