我在我的玉石模板中使用它:
span.date
- function convertDate(dateString) {var date = new Date(dateString);return date.getDate()+"."+date.getMonth()+"."+date.getFullYear();}
| #{convertDate(tile.date)}
迭代瓷砖时。
输入" 2016-07-14"回报是" 14.6.2016"," 2016-08-09" - > " 2016年9月7日"等
为什么一个月会迷路?
答案 0 :(得分:2)
date.getMonth()
返回月份索引,该索引从0开始。
要将其转换为月份位置,您需要将1
添加到其值。