我使用离子滑块(http://ionden.com/a/plugins/ion.rangeSlider/en.html)和moment.js来处理日期。问题是日期不会按照滑块上的格式进行格式化。
var beginMoment = moment("2015-04-20");
var endMoment = moment("2015-08-20");
console.log("Begin");
console.log(beginMoment);
$("#chord_range").ionRangeSlider({
type: "double",
min: +moment(beginMoment).format("X"),
max: +moment(endMoment).format("X"),
from: +moment(beginMoment).format("X"),
to: +moment(endMoment).format("X"),
prettify: function (num) {
return moment(num, "X").format("dddd, MMM Do YYYY");
}});
然而,日志确实提供了正确的格式。任何建议都将不胜感激。