作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在努力解决这个问题,当ajax成功时,我的localstorage键值不会更新该值,并保留旧的存储数据,但是只有当我按f5或刷新不友好的页面时它才会更新。
var hide_cat = $('#hide_cat').val();
function fetch_data(){
$.ajax({
url: '../ajax/ajax_fetch_loop.php',
data : {hide_cat : hide_cat},
type: 'post',
cache: false,
success:function(data){
localStorage.setItem('dat', data); /*<-- this one should update new
value every time success,
however its not working, it
remians the old data and i
need to refresh before it
store a new value*/
}
});
}
fetch_data();
function fetch_datas(){
//so after update i should get a new value after ajax success
var table_data = localStorage.getItem('dat');
$('#tboy_labasmo').html(table_data);
}
fetch_datas();
最佳答案
在存储响应之前,您需要使用JSON.stringify
localStorage.setItem("dat", JSON.stringify(data));
关于Javascript:如何在每次ajax成功后更改localStorage Key的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38811359/
我是一名优秀的程序员,十分优秀!