You can sort it with an object for the order, as you already had, but you need the difference
return order[a.DayOfWeek] - order[b.DayOfWeek];
as a return value for the sort callback.
var data = [{ DayOfWeek: "Saturday", TotalCount: 30 }, { DayOfWeek: "Friday", TotalCount: 10 }, { DayOfWeek: "Monday", TotalCount: 23 }, { DayOfWeek: "Sunday", TotalCount: 18 }, { DayOfWeek: "Wednesday", TotalCount: 20 }],
order = { Sunday: 1, Monday: 2, Tuesday: 3, Wednesday: 4, Thursday: 5, Friday: 6, Saturday: 7 };
data.sort(function (a, b) {
return order[a.DayOfWeek] - order[b.DayOfWeek];
});
document.write('<pre>' + JSON.stringify(data, 0, 4) + '</pre>');
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…