我尝试了 json 过滤器,但我得到“json”过滤器未找到错误。我做错了什么?
Error: Filter "json" not found at Object.exports.wrapFilter (......./node_modules/swig/lib/helpers.js:310:11)
<script type="text/javascript">
{{ places|json }}
</script>
对象是从 mongodb 传递的
this.displayMainPage = function(req, res, next) {
"use strict";
places.getPlaces(10, function(err, results) {
"use strict";
if (err) return next(err);
return res.render('places_template', {
places: results
});
});
}
编辑:我正在尝试输出 json 以传递给谷歌地图并在 html 中显示相同的数据