这是我的简单html,当我直接打开文件时,没有问题
<html>
<head>
<meta charset="utf-8">a
<title>Demo</title>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
<script src="jquery.js"></script>
<script>
$( document ).ready(function() {
$( "a" ).click(function( event ) {
alert( "The link will no longer take you to jquery.com" );
event.preventDefault();
});
});
</script>
</body>
</html>
但是,如果我输入http://localhost:8000/
tornaod,则会向我显示错误WARNING:tornado.access:404 GET /jquery.js (::1) 3.00ms
以下是我的简单龙卷风代码......我不确定我的代码有什么问题...
class IndexHandler(tornado.web.RequestHandler):
def get(self):
self.render("./pages/index.html")
app = tornado.web.Application([(r'/test1', Test1Handler),
(r'/test2', Test2Handler),
(r'/test3', Test3Handler),
(r'/', IndexHandler)],
debug=True)
app.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
答案 0 :(得分:1)
从我看到的,你只有4条路径可以通过Tornado访问:/ test1,/ test2,test3和/。没有指定访问/jquery.js的路径。
看看这个问题,看看如何提供静态文件: Using Tornado, how do I serve static files and serve a favicon.ico from a different directory than the static path?