Html:
<form method="post" action="/company/project/exportexcel" style=" display: inline-block;">
{% csrf_token %}
<input type="hidden" name="export_option" value="some_value">
<button class="btn btn-sm btn-warning" type="submit" style="margin-bottom: 10px"><i
class="mdi mdi-export"></i>导出
</button>
</form>
urls.py
path('exportexcel', views.exportexcel.as_view(), name='company-project-exportexcel'),
views.py:
class exportexcel(LoginRequiredMixin, BaseView):
def post(self, request):
projects = ProjectModel.objects.using('company').all()
# 创建一个新的Excel工作簿
wb = Workbook()
ws = wb.active
ws.title = "ProjectList"
# 添加表头
ws.append(["ID", "Code", "Project Name", "Company Name", "Curr

最低0.47元/天 解锁文章
1294

被折叠的 条评论
为什么被折叠?



