使用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]); %>
我会想象的过程是相似的,但是这是我做我的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
相同的过程