1

我被要求将 Python 应用程序转换为 Django 应用程序,但我对 Django 完全陌生。

我有以下问题,当我上传必须读取以将其内容保存到数据库中的文件文本时,我发现 Django 正在删除“额外”空格,我必须保留这些空格。

这是我的模板

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Test</title>
</head>

<body>
    {% if newdoc %}
        <ul>
        {% for line in newdoc %}
            <li>{{ line }} </li>
        {% endfor %}
        </ul>
    {% endif %}

    <form action="{% url 'exam:upload' %}" method="post" enctype="multipart/form-data" content-type="text/plain">
        {% csrf_token %}
            <p>{{ form.non_field_errors }}</p>
            <p>{{ form.docfile.label_tag }} {{ form.docfile.help_text }}</p>
            <p>
                    {{ form.docfile.errors }}
                    {{ form.docfile }}
            </p>
        <p><input type="submit" value="Upload" /></p>
    </form>
</body>

这就是我在views.py中的内容

def upload(request):

    if request.method == 'POST':
        form = DocumentForm(request.POST, request.FILES)
        if form.is_valid():
            newdoc = request.FILES['docfile']
            form = DocumentForm()
            return render(request, 'exam/upload.html', {'newdoc': newdoc, 'form': form})
    else:
        form = DocumentForm() # A empty, unbound form

    return render(request, 'exam/upload.html', {
        'form': form,
    })

这是我的forms.py:

from django import forms

class DocumentForm(forms.Form):
    docfile = forms.FileField(
        label='Select a file',
        help_text='max. 42 megabytes'
)

现在,当我上传文件时,它会显示如下随机行:

"09000021009296401 02 b a b a b b b d b b d d a +8589 +03+6942 +03+1461 +00+5093 +00+2 +00+9237 +01+60 +01+00 +00"

虽然它应该是这样的:

"09000021009296401 02 b   a          b   a     b    b    b d  b    b      d    d                a                        +8589  +03+6942  +03+1461  +00+5093  +00+2     +00+9237  +01+60    +01+00    +00                    "

我必须保留额外的空格,并且他们将这些信息保存到数据库中,如果我没有文件所具有的所有空格,我将无法正确执行此操作。

另外,在你问之前,它与 Django 的打印格式无关,因为在之前的测试中我已经尝试将信息保存到模型中,但是空格也有同样的问题。

感谢大家。

4

1 回答 1

1

更改模板如下:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Test</title>
</head>

<body>
    {% if newdoc %}
    <pre><code>{% for line in newdoc %}{{ line|safe }}{% endfor %}</code></pre>
    {% endif %}

    <form action="{% url 'exam:upload' %}" method="post" enctype="multipart/form-data" content-type="text/plain">
        {% csrf_token %}
            <p>{{ form.non_field_errors }}</p>
            <p>{{ form.docfile.label_tag }} {{ form.docfile.help_text }}</p>
            <p>
                    {{ form.docfile.errors }}
                    {{ form.docfile }}
            </p>
        <p><input type="submit" value="Upload" /></p>
    </form>
</body>
于 2013-06-13T11:40:56.907 回答