私はcgiからweb.pyにアプリケーションを移行しています。結果を得て、cgiの簡単なprint文で動的に出力します。その結果、ページの読み込みが完了する前に結果が印刷されます。 web.pyでは、私はreturn文を持っており、どのように同じことを達成できるのか分かりません。web.pyの動的印刷
サンプルCGIコード:
print "<p><b>Displaying Search Results</b></p>"
print "<table>"
cmd = subprocess.Popen(["find", location ,"-name", fileName], stdout=subprocess.PIPE)
for line in cmd.stdout:
tableData=line.rstrip("\n")
tableRow="<tr><td>tableData</td></tr>"
print tableRow
print "</table>"
上記のコードは、それが生成される時に行を印刷することになります。 web.pyの場合はどうすればいいですか?
ありがとうございました!!!!まさに私が探していたもの! – StuckAgain