我正在使用 nunjucks 模板学习 expressjs,mongodb。数组通过以下方式从服务器发送到 html:
poll.find().sort({'date': -1}).toArray(function(err,docs){
res.render("home",{polls:docs});
});
变量 polls 是一个对象数组。我能够在 html 视图中成功访问 polls 数组,但我不知道如何在客户端 js 文件中访问它以使用数组内的数据绘制图表。
如果我使用<input type='hidden value='{{ polls }}'>
,它将被转换为字符串和数组,其中的对象无法在客户端 js 中访问。可以做什么?