这是我的代码:
var cons = require('consolidate');
var list = new Array();
cons.swig("views/Categories.html", {categorylist: list},
function(err, html) {
response.writeHead(200, {"Content-Type" : "text/html"});
response.end(html);
});
我需要将数组传递给 Categories.html 页面。然后该数组必须在 Categories.html 页面中是可操作的。我怎么做?任何帮助将非常感激 :)