Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/365.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/python/342.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 如何将参数从tornado传递到js文件而不是html?_Javascript_Python_Templates_Tornado - Fatal编程技术网

Javascript 如何将参数从tornado传递到js文件而不是html?

Javascript 如何将参数从tornado传递到js文件而不是html?,javascript,python,templates,tornado,Javascript,Python,Templates,Tornado,在服务器中,我使用参数呈现模板,如下所示: self.render('templates/test.html', names="['Jane', 'Tom']") 我在test.html的中成功地获得了它,方法如下: var N = "{{ names }}"; 现在我想把js代码和html分开: <script type="text/javascript" src="static/test.js"></script> 但是当我把N=“{{names}}”放在那

在服务器中,我使用参数呈现模板,如下所示:

self.render('templates/test.html', names="['Jane', 'Tom']")
我在
test.html
中成功地获得了它,方法如下:

var N = "{{ names }}";
现在我想把
js代码
html
分开:

<script type="text/javascript" src="static/test.js"></script>

但是当我把
N=“{{names}}”
放在那个js文件中时失败了


谁能告诉我该怎么办?谢谢

您可以创建要从HTML文件调用的setter函数,以传递参数:

$ tree
.
├── static
│   └── scripts
│       └── test.js
├── templates
│   └── index.html
└── test.py
龙卷风代码:

#!/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()
模板:

<!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>
/* test.js */
var test = ""

function set_test(val)
{
    test=val
}

function show_test()
{
    alert(test);
}