作者left ()
看板Python
标题同一个页多个表单的问题
时间Wed Dec 19 22:09:52 2012
各位大大 ,小的在学习python有一些问题
就是我现在在某个html有多个form
在选定完我想要的form之後
按下去会对应到一个xxx.py档上做执行
我要怎麽在xxx.py上抓到我从html上输入的资料呢?
还是我在建立多个form的时候要做些手脚?
--
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 140.112.217.224
1F:推 darkgerm:你是说用 python 写 cgi 吗?要读环境变数 query_string 12/19 22:38
2F:→ darkgerm:有 urlparse.parse_qs() 可以帮你 parse 参数 12/19 22:39
3F:推 seanptt:import cgi 12/19 23:31
4F:→ seanptt:form = cgi.FieldStorage() 12/19 23:31
5F:→ seanptt:userid = cgi.escape(form['UserID'].value) 12/19 23:32