1

免责声明:我是 Django 的初学者。

我正在尝试创建一个应用程序,希望客户在提交之前预览并确认表单。我尝试使用内置的 Django FormPreview,但发现它不支持 File 字段,所以我把它扔掉了。

谁能指出我正确的方向?

4

1 回答 1

1

一个概念想法是:

在您的模板中:

<input name='preview' type='submit' />
<input name='submit' type='submit' />

为了获取您的帖子:

form = YourFormName(request.POST)
if 'preview' in request.POST:
    # here you return the response you wish
    # the user to see when trying preview
    # for example form.is_valid()
    # could be nice to deal with
if 'submit' in request.POST:
    # normal form handling
于 2013-01-14T13:21:14.843 回答