从json对象获取今天和昨天的数据,其中数组/对象键是日期

时间:2012-09-17 12:53:55

标签: javascript

我使用ajax获取每天的销售清单,下面是返回给我的ajax示例(我完全控制了前端和后端,所以让我知道阵列结构是否可以更好地改进到适合任务);

{

"map": [ … ],
"salesCount": {
    "ins_1": {
        "17/09/2012": 5,
        "16/09/2012": 32,
        "15/09/2012": 75,
        "14/09/2012": 78,
        "13/09/2012": 79,
        "12/09/2012": 83,
        "11/09/2012": 74,
 ...
    "ins_2": {
        etc

我想获得今天的销售(17/09/2012)以及昨天的销售。到目前为止,我有这个:

$.ajax({
    url:        appPath+'application/sale/json',
    type:       'POST',
    dataType:   'json',
    success:    function(response) 
    {
        var keys = null;

        // Get and organise our sales data
        jQuery.each(response.salesCount, function(insurer, dayList) 
        {
            controller.salesData[insurer] = {"days": dayList};

            keys = Object.keys(controller.salesData[insurer].days);
            controller.salesData[insurer].today = controller.salesData[insurer].days[keys[0]];

            // Update sales totals
            $('#'+insurer+' p.today').html(controller.salesData[insurer].today);

这样可行,但是你可以想象它不是很灵活(我猜想一个坏主意试图依赖一个不存在的对象)。

因此我尝试根据日期引用销售数组。我试过了:

// Work out todays date and sales
var today = new Date();
var todayString = today.getDate()+'/'+today.getMonth()+'/'+today.getFullYear();

console.log(todayString)
console.log(controller.salesData[insurer].days[todayString]);

// outputs: 17/8/2012 and "85"(which is wrong, no idea where it gets that value)

我已经尝试更改数组键以删除正斜杠等,但没有快乐。当然有更好的方法吗?

谢谢。

1 个答案:

答案 0 :(得分:2)

要返回今天日期的销售数量,您可以像这样查询JSON对象:

var json =
{
    "salesCount": {
        "ins_1": {
            "17/09/2012": 5,
            "16/09/2012": 32,
            "15/09/2012": 75,
            "14/09/2012": 78,
            "13/09/2012": 79,
            "12/09/2012": 83,
            "11/09/2012": 74
        }
    }
};

var today = new Date();
var month = today.getMonth() + 1;
var dateString = today.getDate() + '/' + (month < 10 ? '0' + month : month) + '/' + today.getFullYear();
var totalSales = json['salesCount']['ins_1'][dateString];

console.log(totalSales); // outputs 5