Created
September 4, 2014 19:10
-
-
Save c0ldlimit/1a79c75f08ed939e08cc to your computer and use it in GitHub Desktop.
#python #tornado pass arguments from tornado to js and not just html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://stackoverflow.com/questions/19112296/how-to-pass-arguments-from-tornado-to-a-js-file-but-not-html | |
$ tree | |
. | |
├── static | |
│ └── scripts | |
│ └── test.js | |
├── templates | |
│ └── index.html | |
└── test.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test</title> | |
<script src="{{ static_url('scripts/test.js') }}" type="application/javascript"></script> | |
</head> | |
<body> | |
<input type="button" onclick="show_test()" value="alert" /> | |
<script type="application/javascript"> | |
set_test("{{test}}"); | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* test.js */ | |
var test = "" | |
function set_test(val) | |
{ | |
test=val | |
} | |
function show_test() | |
{ | |
alert(test); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import os.path | |
import tornado.httpserver | |
import tornado.ioloop | |
import tornado.options | |
import tornado.web | |
from tornado.options import define, options | |
define("port", default=8000, help="run on the given port", type=int) | |
class IndexHandler(tornado.web.RequestHandler): | |
def get(self): | |
self.render('index.html', test="Hello, world!") | |
if __name__ == '__main__': | |
tornado.options.parse_command_line() | |
app = tornado.web.Application( handlers=[ | |
(r'/', IndexHandler)], | |
static_path=os.path.join(os.path.dirname(__file__), "static"), | |
template_path=os.path.join(os.path.dirname(__file__), "templates")) | |
http_server = tornado.httpserver.HTTPServer(app) | |
http_server.listen(options.port) | |
tornado.ioloop.IOLoop.instance().start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment