-1

如果用户的输入正确,我想显示/显示 test.html(与脚本位于同一目录中)。

测试.html:

<html>
<head><title>Test</title></head>
<body>
  <p>Test</p>
</body>
</html>

表格.html:

<form action="submit.cgi" method="get">
<p>Question 1</p>   
<select name="form1">
<option value="1">Test 1</option>
<option value="2">Test 2</option>
</select>

<p>Question 2</p>
<select name="form2">
<option value="3">Test 3</option>
<option value="4">Test 4</option>
</select>
</form>

Python 脚本(submit.cgi):

#!/usr/bin/python3

import cgi
import cgitb

print ('Content-type: text/html\n\n')
form = cgi.FieldStorage() 
if form["form1"].value == '1' and form["form2"].value == '3':
    ...?

我知道可以只在脚本中打印整个 test.html(有效),但我更喜欢导入/打开 html 页面(尤其是多个或大型 html 文件)。我试过了:

open("test.html") 

但这没有用。有人知道怎么做吗?

4

1 回答 1

1

解决方案:

if form["form1"].value == '1' and form["form2"].value == '3':
    print ('''
  <head><meta http-equiv="refresh" content="0;URL='test.html'" /></head>    
''')
于 2013-11-02T19:19:22.450 回答