0

次の例では、フォームから複数のファイル入力を受け取り、シリアル メソッドで書き込みます。各ファイルがページに成功すると印刷されますが、各ループ間で改行が発生していませんか? これを修正する最良の方法は何ですか?printステートメントはデフォルトで改行を追加すると思いましたか?

#!/usr/bin/python
import cgi, os
import shutil
import cgitb; cgitb.enable()  # for troubleshooting

form = cgi.FieldStorage()

print """\
Content-Type: text/html\n
<html><body>
"""

if 'file' in form:
   filefield = form['file']
   if not isinstance(filefield, list):
      filefield = [filefield]

   for fileitem in filefield:
       if fileitem.filename:
          fn = os.path.basename(fileitem.filename)
          # save file
          with open('/var/www/rsreese.com/files/' + fn, 'wb') as f:
              shutil.copyfileobj(fileitem.file, f)
          # line breaks are not occuring between interations
          print 'File "' + fn + '" was uploaded successfully \n'
          message = 'All files uploaded'
else:
   message = 'No file was uploaded'

print """\
<p>%s</p>
</body></html>
""" % (message)
4

1 に答える 1

6

Python は改行を問題なく出力しますが、ブラウザにはこれらが表示されません。

代わりにタグを使用する<br/>か、出力全体を<pre>/</pre>タグで囲みます。

于 2012-09-03T13:16:54.697 に答える