2013-05-10 69 views

回答

0

在您的應用程序:

app.get('/demo.js', function(req, res) { 
    res.set('Content-Type', 'text/javascript'); 
    res.render('script', { value : Math.random() }); 
}); 

在模板(script.jade):

|var someVar = #{value}; 

測試:

$ http get localhost:3012/demo.js 
... 
HTTP/1.1 200 OK 
Connection: keep-alive 
Content-Length: 33 
Content-Type: text/javascript 
Date: Fri, 10 May 2013 14:30:54 GMT 
X-Powered-By: Express 

var someVar = 0.9364965052809566;