努力了解为什么这不起作用:
import MySQLdb
import cgi, cgitb
import os
from wsgiref.simple_server import make_server
from cgi import parse_qs, escape
def index(req):
d = parse_qs(os.environ['QUERY_STRING'])
dtbox = d.get('dt', [''])[0]
tmbox = d.get('tm', [''])[0]
该脚本返回一个 KeyError:QUERY_STRING
我可以看到网址是:
http://myserver/currentcost.py?dt=2013-09-10&tm=00
我简直迷路了!