如何将变量从玉石模板文件传递到脚本文件?
2022-08-30 04:43:15
我在 jade 模板文件 (index.jade) 中声明的变量 (config) 中遇到问题,该变量未传递到 javascript 文件,这会使我的 javascript 崩溃。以下是文件(views/index.jade):
h1 #{title}
script(src='./socket.io/socket.io.js')
script(type='text/javascript')
var config = {};
config.address = '#{address}';
config.port = '#{port}';
script(src='./javascripts/app.js')
这是我的应用程序的一部分.js(服务器端):
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(__dirname + '/public'));
});
app.configure('development', function(){
app.set('address', 'localhost');
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
});
app.configure('production', function(){
app.use(express.errorHandler());
});
// Routes
app.get('/', function(req, res){
res.render('index', {
address: app.settings.address,
port: app.settings.port
});
});
if (!module.parent) {
app.listen(app.settings.port);
console.log("Server listening on port %d",
app.settings.port);
}
// Start my Socket.io app and pass in the socket
require('./socketapp').start(io.listen(app));
这是我的javascript文件的一部分崩溃(public/javascripts/app.js):
(function() {
var socket = new io.Socket(config.address, {port: config.port, rememberTransport: false});
我在localhost(我自己的机器)上以开发模式(NODE_ENV=开发)运行站点。我正在使用node-inspector进行调试,它告诉我配置变量在public / javascripts / app中未定义.js。
任何想法??谢谢!!