Underscorejs洗牌与EJS

问题描述 投票:0回答:1

使用https://underscorejs.org/#shuffle

是否有可能使用_.shuffle(list)与EJS?

我得到_没有定义。

<script type="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"></script>

<% var breakfastFoods = []  %>
<% var breakfastFoodsInfo = []  %>
<% for (var food of allDBFoods) { %>
<% if (food.breakfast == true ){ %>
<% breakfastFoods.push(food.name) %>
<% breakfastFoodsInfo.push(food.info) %>
<% } %>
<% } %>


<% _.shuffle([breakfastFoods]); %>
arrays node.js underscore.js ejs
1个回答
1
投票

我会想象的过程是相似的,但是这是我做我的EJS文件模板使用moment

# routes.js

const moment = require('moment');


app.get('/fixtures', (req, res) => {
  const file = await readFile('./views/partials/fixtures.ejs');
  const fixtureTemplate = ejs.compile(file, { client: true });
  const html = fixtureTemplate({ moment });
  res.send({ html });
});

在我examples.ejs文件,我可以再使用瞬间像这样

<%=  moment.utc(fixture.kick_off).local().format('HH:mm') %>

希望你可以按照使用underscore相同的过程

© www.soinside.com 2019 - 2024. All rights reserved.