为了账号安全,请及时绑定邮箱和手机立即绑定

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

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 回答

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信