使用ajax

时间:2018-12-09 20:50:54

标签: javascript ajax

我将一些用户数据存储在cookie中,然后将所有数据附加到表中:

$.ajax({
    url: "http://127.0.0.1:8000/recent/",
    dataType: 'json',
    type: 'get',
    cache:false,
    success: function(data){
        var recent = JSON.parse(data['recent']).reverse();
        $('.container').append(get_table(recent));
    },
    error: function(d){
        alert("404. Please wait until the File is Loaded.");
    }
  });

所以我的问题可能有点愚蠢,但是由于我使用Ajax获取数据,因此每次更改Cookie中的数据时都不必刷新表。

1 个答案:

答案 0 :(得分:0)

不是,每次您更改Cookie中的数据时,它都不会刷新。那是因为您只附加了收到的第一个数据并保存在cookie中。

如果您每次在cookie中更改数据时都想刷新表,则需要创建一个侦听器来告诉您数据已更改。