【发布时间】:2021-12-02 05:54:22
【问题描述】:
我正在开发一个 django 应用程序,我在其中上传 CSV 文件,但是一旦上传,我只想在该 CSV 的另一个页面中显示列。有没有办法做到这一点?
类似
def index(request):
file = request.POST.get('file')
redirect('nextpage', file)
【问题讨论】:
标签: python django file django-views django-templates