本文介绍了如何在Node.js Jade中显示今天的日期?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是Node.js和Jade的新手,我试图使用#{Date.now()}
,它给了我数字。如何在 mm / dd / yy
格式中显示日期?
解决方案
h2>您可以使用
首先,为您的快递应用添加时刻本地人
express = require('express');
...
app = express();
app.locals.moment = require('moment');
然后你可以使用这样的玉模板中的时刻:
p#{moment(Date.now())。format('MM / DD / YYYY')}
/ pre>
默认情况下,需要
Date.now()
,所以你也可以写:p#{moment()。format('MM / DD / YYYY')}
/ pre
资料来源:
I am new to Node.js and Jade and I have tried to use #{Date.now()}
and it's giving me numbers. How do I display the date in mm/dd/yy
format?
解决方案
You can use moment.js
First, add moment to your express application locals
express = require('express');
...
app = express();
app.locals.moment = require('moment');
Then you can use moment within a jade template like this:
p #{moment(Date.now()).format('MM/DD/YYYY')}
Moment takes Date.now()
by default, so yo can also write:
p #{moment().format('MM/DD/YYYY')}
Sources:
这篇关于如何在Node.js Jade中显示今天的日期?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!