我有这样的问题:我想显示计数器,它每秒都会改变,所以我需要更改我将在 jQuery 中使用的 Ruby 变量。
编辑:我想制作计数器,这对所有用户都是一样的。
我有 counter.json.erb 文件:
{
"count": <%= @counter%>
}
和行动:
def counter
@counter //here I need to change variable
respond_to do |format|
format.jsonr do
render :json
end
end
end
我正在使用 jQuery 获取这个变量:
$.getJSON('http://127.0.0.1:3000/counter.json', function(data) {
alert(data.count);//alert just for testing
})
编辑:建议的代码:
var counter = 0
$(document).ready(function(){
var myCounter = new flipCounter('counter', {value:counter});
$.getJSON('http://127.0.0.1:3000/counter.json', function(data) {
myCounter.setValue(data.count);
})
});
setInterval(function() {
$.getJSON('http://127.0.0.1:3000/counter.json', function(data) {
myCounter.setValue(data.count);
}, 1000);
我得到错误:
Uncaught SyntaxError: Unexpected end of input application.js:1
也许有人可以提出一些建议?也许其他解决方案?