qq_藞藞呀_0
2017-04-20 14:51
import web
render = web.template.render('tompalates') #相对路径或绝对路径 相对与.py文件
urls = (
'/index', 'index',
'/blog/\d+', 'blog',
'/(.*),', 'hello'
)
app = web.application(urls, globals())
class index:
def GET(self):
query = web.input()
return query
class blog:
def POST(self):
data = web.input()
return data
def GET(self):
return web.ctx.env
class hello:
def GET(self, name):
return render.hello1()
看下服务器有没有打开,再看下8080这个端口是否被占用了,修改端口试下。
python-web.py开发入门
58639 学习 · 106 问题
相似问题