我想制作计数器,所有用户的值都相同。
我有 json 文件,其中包含数据:count = 0。
我想每秒运行一次函数,接下来将执行以下操作:
1.从json文件中获取值
2.更新计数器值
3.更改json文件中的值
4.转到1
这是我现在拥有的:
var counter = 0;
var myCounter = new flipCounter('counter', {value:counter});//initializing counter
window.setInterval(function(){
$.getJSON('http://127.0.0.1:3000/counter.json', function(data) {1.taking the data from file
myCounter.setValue(data.count);//2.Updating counter
//3.here I need to change value from json file
})
}, 1000);
有人可以帮我解决第 3 点(如何从 jQuery 更改 json 值)吗?