- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
基本上我已经创建了一个在线排行榜 here返回前 100 个用户分数
如果用户点击刷新并且排名发生变化,它将显示新的排名。我想做的是使用 AJAX、jQuery 和 JSON 在不刷新页面的情况下更新排名。
排行榜通过关联sql查询填充并存储在sql变量中,我已经设法以JSON格式获取输出here使用
//Shows user details and the current top 100 ranks
while ($row = mysql_fetch_assoc($result)) {
print json_encode ($row);
}
到目前为止一切顺利,使用 [Tinysort][3] 中的这个动画排序示例
function sort() {
var $Ul = $('ul#leaderboard');
$Ul.css({position:'relative',height:$Ul.height(),display:'block'});
var iLnH;
var $Li = $('ul#leaderboard>li');
$Li.each(function(i,el){
var iY = $(el).position().top;
$.data(el,'h',iY);
if (i===1) iLnH = iY;
});
$Li.tsort('h1:eq(0)',{order:'desc'}).each(function(i,el){
var $El = $(el);
var iFr = $.data(el,'h');
var iTo = i*iLnH;
$El.css({position:'absolute',top:iFr}).animate({top:iTo},500);
});
}
我相信我已经完成了大部分工作,但我陷入了下面的 poll() 函数
poll();
function poll() {
$.ajax({
url: 'http://test.bmx-tube.com/ajax.php', // needs to return a JSON array of items having the following properties: id, score, facebook_id, username
dataType: 'json',
success: function(o) {
for(i=0;i<o.length;i++) {
if ($('#row-'+o[i].player_id).length == 0) {
// this id doesn't exist, so add it to our list.
$("#leaderboard").append('<li><h1 style="display:inline" player_id="row-' + o[i].player_id + '">' + o[i].score + '</h1> <img style="height:50px" src="http://graph.facebook.com/' + o[i].facebook_id + '/picture"/> ' + o[i].name + '</li>');
} else {
// this id does exist, so update 'score' count in the h1 tag in the list item.
$('#row-'+o[i].player_id).html(o[i].score);
}
}
sort();
},
});
// play it again, sam
var t = setTimeout(poll,3000);
}
我尝试过更改周围的所有变量,但到目前为止还没有运气。
非常感谢任何帮助
最佳答案
首先,您的 JSON 字符串无效。您的服务器实际上并未返回对象数组。
您是否使用 echo json_encode($yourArray);
创建 JSON 服务器端?
以下是 JSON 字符串形式的正确对象数组的示例:
{"array":[
{"object":"1","description":"this is an object"},
{"object":"2","description":"this is an object"},
{"object":"3","description":"this is an object"}
]}
注意:您可以使用 JSONLint 验证 JSON 字符串:http://jsonlint.com/
您还可以使用 firebug 或 chrome 的检查器工具来查看对象是否有效,并以更直观的方式查看服务器返回的 JSON 字符串。
一旦你有了一个有效的对象,你就可以使用 jQuery .each()
轻松而优雅地访问对象。
例如:
$.ajax({
url: 'http://test.bmx-tube.com/ajax.php',
type: "get", cache:false,
dataType: 'json',
success: function(ranks)
{
$(ranks).each(function(index, rank)
{
if($('#row-'+rank.player_id).length == 0)
{
// this id doesn't exist, so add it to our list.
$("#leaderboard").append('<li><h1 style="display:inline" id="row-' + rank.player_id + '">'+rank.score+'</h1> <img style="height:50px" src="http://graph.facebook.com/'+rank.facebook_id + '/picture"/> ' + rank.name + '</li>');
}
else
{
// this id does exist, so update 'score' count in the h1 tag in the list item.
$('#row-'+rank.player_id).html(rank.score);
}
});
//now sort
sort();
},
error: function()
{
alert("Ajax error: could not access URL");
}
});
在将 GET 与 AJAX 结合使用时,最好禁用定期更改的数据缓存。这就是上面的 type: "get", cache:false,
所做的事情。
如果您需要任何进一步的帮助,请告诉我...这应该会为您指明正确的方向。
干杯,油酸
我现在明白你打算用 player_id="row-'+rank.player_id+'"
做什么。实际上应该是 id="row-'+rank.player_id+'"
我修改了上面的代码以反射(reflect)这一点。
这是一个 JSFiddle,演示了您可以如何进行您想要做的事情。我现在通过删除排序函数来简化事情,只使用一个非常简单的排序。我还将生成的 HTML 分解为多个部分,以便您可以单独设置它们的样式并以更结构化的方式修改数据。 http://jsfiddle.net/DigitalBiscuits/fKcKF/6/
注意:由于 jsFiddle 的工作方式,我必须生成一个模拟数据集并修改 AJAX 函数来加载它。在您的网站上,您当然会从您自己的服务器加载 JSON。
<小时/>如果这对您有帮助,请投票。如果它解决了您的问题,请将此答案标记为正确。
祝你好运!
关于jquery - 使用 PHP、AJAX、JQUERY 和 JSON 的动态记分板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13878359/
我们将 Azure Boards(与敏捷流程相关的项目)定义为“功能”>“史诗”>“任务”>“用户故事”。 在我们的Azure Boards(Boards >Board)中,它仅显示Epic和Feat
我正在编写一个 C++ 井字游戏,这是我目前拥有的: #include using namespace std; int main() { board *b; b->draw();
这是一个足够简单的问题。 看完documentation for ion-pane它指出: A simple container that fits content, with no side eff
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 4年前关闭。 Improve this
我正在用 javascript 对 arduino 开发板进行编程。我正在尝试使用 johnny-five 库连接多个 arduino 板。我关注了johnny-five documentation我
在我的 Java 类(class)中,我们正在学习《Java 基础知识》一书的第 4 章。我正在做项目 4-11,它是一个黑色和红色的棋盘格,但是我得到随机颜色,我试图按照本书教我们使用 ColorP
我正在制作一个数独板 GUI,它应该看起来像这样 http://www.sudoku.4thewww.com/Grids/grid.jpg 由于某种原因,它只显示最后一个 3*3 板。如果有人能告诉我
我正在开发一款带有二维阵列(游戏板)的新游戏。每个单元格/图 block 都有一定数量的点。 我想实现的是一个算法能找到核心最高的最短路径。 所以我首先实现了 Dijkstra 算法(下面的源代码)来
更新:(2015-10-16)[已解决!]-使用trigger()并通过slice()限制为50个引脚固定。 非常感谢Abhas Tandon通过提供使用 $(this).trigger('click
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 7年前关闭。 Improve this questi
var size = 8; var board = ""; for (var y = 0; y x= (x+y) % 2 = 关于javasc
我正在制作一个简单的游戏,需要我创建一个由用户定义大小的棋盘。 我一直在编写一个函数,该函数应该返回我将在我的游戏中使用的棋盘(矩阵),但我似乎无法让它工作。 我尝试使用嵌套的 for 循环方法在 m
我正在尝试让板模板引擎与 express.js 一起工作。我最初的尝试是这样的: app.register('.html', { compile: function (str, options
我正在测试 Azure Boards Rest API。我目前可以成功创建、删除和获取项目,但我似乎无法在列之间移动它们。 这是我的要求https://{{AzureBoardsToken}}@{{A
我想用 trello api 归档一个板/列表,但我找不到解决方案。 与 https://trello.com/docs/api/list/#post-1-lists-idlist-archiveal
我上传了 sketch到一个 Arduino Uno,它的循环是这样的: void loop(){ Serial.println("Hello, World!"); } 所以,现在,我无法再上
我想要进行一个查询,显示结构 Epic -> 功能 -> 发布 -> 用户故事 -> 任务,以及特定迭代路径下的所有待处理任务 我尝试使用工作项树,但它只显示到 mu 用户故事 我的 Azure De
我在 python 中使用来自 Opencv 的 Charuco 标记。我之前使用的是 Aruco 开发板,我可以选择创建一个带有 id 偏移量(例如:偏移量为 40)的开发板。 from cv2 i
我不知道如何将另一个 View 中的辅助 Anchorpane 设置到主 View 的边界(在 fxml 代码中,它将是名为 holderPane 并且有灰色区域),这样当窗口展开时,它也会随之拉伸(
如何使用包含列、行和堆栈(包含 4、3、2、1)的 3D 通用数组制作一 block 板。 这是我声明的: private int row, col, stack; int[][][] array3D
我是一名优秀的程序员,十分优秀!