在运行之前确定数据是否是新的(将数组与 JSON 进行比较)



好吧,我有一个有趣的问题。 我的页面每隔一段时间就会发出一个 JSON 请求。 如果数据未更改,则无需执行任何操作。 问题是,我想不出一种方法来证明它是否已经改变。

我尝试了这样的事情无济于事:

VaR 站 = 空;

function parseDynamicData(ard) {
    //this was something that gave me problems for days
    //nice little hack to fix it
    if (ard['details']['enabled'] == 'true' && ard['song']['art'] != 'undefined');
    {
        //turns off the 'server offline' page
        if (document.location.toString().indexOf('#offline') != -1)
            document.location = '/#tracks';
        //update UI
        $('#track-title').html(htmlDecode(ard['song']['title']));
        $('#track-artist').html(htmlDecode(ard['song']['artist']));
        $('#track-album').html(htmlDecode(ard['song']['album']));
        $('#track-art').attr('src', htmlDecode(ard['song']['art']));
        //set if it's play or pause visible
        if (htmlDecode(ard['details']['playing']) == 'true') {
            $('#control-pauseplay').html('Pause');
            $('#control-pauseplay').attr('href', '/track?proc=2');
        } else {
            $('#control-pauseplay').html('Play');
            $('#control-pauseplay').attr('href', '/track?proc=3');
        }
        //Now update all of the stations
        if (stations == null || stations != ard['stations']) {
            $.each(ard['stations'], function (key, value) {
                alert(key);
            });
            stations = ard['stations'];
        }
    }
}

下面是正常的 JSON 响应的样子:

{
    "song": {
        "art": "http://cont-sjl-1.pandora.com/images/public/amz/6/2/3/3/886978533326_500W_500H.jpg",
        "title": "Hold It Against Me",
        "artist": "Britney Spears",
        "album": "Femme Fatale Deluxe"
    },
    "details": {
        "playing": "true",
        "enabled": "true"
    },
    "stations": {
        "undefined": "False",
        "Alex Clare Radio": "False",
        "Rap Strength Training Radio": "False",
        "Drops Of Jupiter Radio": "False",
        "Tween Radio": "False",
        "Today's Hits Radio": "True"
    }
}

但是,无论我做什么,它仍然会通过 JSON 为每个键发出警报。 有人知道我应该怎么做吗?

我怀疑stationsard['stations']是结构相同的不同对象。 如果您在每个 JSON 请求后重建ard,而 stations 保存ard的数组,则这两个对象不是同一个对象,因此无论对象是否具有相同的键值对,完全匹配都将失败。

我要做的是保留最后一个 JSON 消息的精确字符串副本,并在解析之前将其与当前 JSON 字符串消息进行比较。 否则,您需要将当前对象的每个键值对与未来的新对象进行比较 - 如果其中一些值本身就是对象,那么事情可能会变得有点(不必要地)毛茸茸的。

如果您可以确定服务器将始终以相同的方式字符串化给定对象 O(并且您不必担心检查客户端上的对象是否发生了突变),那么您可以简单地比较来自服务器的对象的 JSON 字符串版本。

您可以尝试使用 JSON。串化?显然,您从 JSON 请求中返回的是 JSON,我假设您已将最后一个请求转换为实际对象。所以只需致电:

JSON.Stringify(Object) === JSONresult

并比较两个字符串。

相关内容

  • 没有找到相关文章

最新更新