bottle返回404 编程语言 bottle python 发布时间 : 2020-07-17 00:00 字数:44 阅读 : 123456789101112from bottle import route, run, error@error(404)def f1(err):#必须有err传递参数 return err #也可以返回字符串"404"之类的@route("/")def f2(): return "主页"run(port=8088,reloader=True) 转载请注明来源 https://tianweiye.github.io