我有一个HTML文件,其中包含名字和姓氏。如何将这些数据放入python中的文件中

时间:2013-10-24 09:19:57

标签: python html cgi

有一个HTML文件,其中包含名字和姓氏。现在我希望使用python将数据放入文件中。有一种称为CGI脚本的东西,但我不知道应该怎么写。 而且我是新手。很抱歉问愚蠢的问题

这是我的HTML代码:

<html>
    <head>
    <title>INFORMATION</title>
    </head>
      <body>
        <form action = "/cgi-bin/test.py" method = "post">
            FirstName:
            <input type = "text" name = "firstname" /><br>
            LastName:
            <input type = "text" name = "lastname" /><br>

            <input type = "submit" name = "submit "value = "SUBMIT">
            <input type = "reset" name = "reset" value = "RESET">
            </form>
       </body>
</html>

我写的python代码是:

#!usr/bin/python

form = web.input()
print form.firstname
print form.lastname

2 个答案:

答案 0 :(得分:0)

将表单操作更改为指向要将数据发送到的Python脚本的URL。然后实现Python脚本以获取POST变量“firstname”和“lastname”。这里有一个例子:How are POST and GET variables handled in Python?

答案 1 :(得分:0)

您需要设置一个服务器,将请求重定向到python脚本,将表单操作的url更改为指向该脚本,然后实际编写一个执行所需操作的python脚本。

您是否尝试过像Flask这样的Web开发框架?这可能会做你想要的。