龙卷风无法加载 jquery.js?
tornado can't load jquery.js?
这里是我的简单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()
据我所知,您只指定了 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?
这里是我的简单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()
据我所知,您只指定了 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?