为什么在前端输入localhost:8080/提示not found 是路径不对么

来源:2-4 请求处理

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()


写回答 关注

1回答

  • 6HaHa
    2017-04-23 09:44:08

    看下服务器有没有打开,再看下8080这个端口是否被占用了,修改端口试下。

python-web.py开发入门

web.py开发入门入门教程,讲解一个你最快能学会的web开发的框架

58639 学习 · 106 问题

查看课程

相似问题