gpt4 book ai didi

javascript - 获取 jQuery timeago 插件以识别新加载的 DOM 元素

转载 作者:数据小太阳 更新时间:2023-10-29 05:42:26 24 4
gpt4 key购买 nike

我正在使用 jquery timeago plugin在我的 Rails 3 应用程序中。我的帖子#show View 上有一个评论部分,它使用 Railscasts 第 229 集 "Polling for Changes" 中使用的 AJAX 每 30 秒自动刷新一次。 .由 jQuery 加载的 _comment 部分包含评论的 created_at 时间,它使用 timeago Rails 辅助方法创建具有正确时间格式的 attr 标签。

当提交评论并且 ajax 加载评论时,jQuery timeago 插件无法识别新的评论 DOM 元素。因此,评论的时间不是显示为“大约一分钟前”,而是显示为“2010-11-21 23:08:36 UTC”。

当然,我用谷歌搜索了这个问题,并找到了有关使用 .live()、.delegate() 或 livequery 插件的建议。

评论/index.js.erb:

<% unless @comments.empty? %>
$("#comments").append("<%=raw escape_javascript(render(@comments)) %>").timeago();
<% end %>

评论/show.js.erb:

$("#comments").append("<%=raw escape_javascript(render(@comments)) %>");

公共(public)/javascripts/application.js:

$(function() {
if ($("#comments").length > 0) {
setTimeout(updateComments, 30000);
}
});

function updateComments () {
var post_id = $("#post").attr("data-id");
if ($("#comments").length > 0) {
var after = $(".comment:last-child").attr("data-time");
} else {
var after = "0";
}
$.getScript("/posts/" + post_id + "/comments?after=" + after)
setTimeout(updateComments, 30000);
}

helpers/application_help.rb:

module ApplicationHelper
def timeago(time, options = {})
options[:class] ||= "timeago"
content_tag(:abbr, time.to_s, options.merge(:title => time.getutc.iso8601)) if time
end
end

layouts/application.html.erb:

<!DOCTYPE html>
<html>
<head>
<%= stylesheet_link_tag 'style' %>
<%= javascript_include_tag :defaults %>
<%= javascript_include_tag 'jquery.timeago' %>
<%= csrf_meta_tag %>
</head>
<body>
<!-- ... -->
<script type="text/javascript">
$("abbr.timeago").timeago();
</script>
</body>
</html>

评论/_comment.html.erb:

<div class="comment" data-time="<%= comment.created_at.to_i %>">
<%- if comment.commenter.empty? -%>
<%- else -%>
<span class="name">
<%- if comment.email.blank? -%>
<%= comment.commenter %>:
<%- else -%>
<a href="mailto:<%= comment.email %>"><%= comment.commenter %>:</a>
<%- end -%>
</span>
<%- end -%>

<%= simple_format @comment.body %>

<span class="time">
<%= timeago(comment.created_at) %>
</span>
</div>

posts/show.html.erb:

<div id="post" data-id="<%= @post.id %>">
<%= link_to @post.title, @post %>
<%= simple_format @post.content %>

<% unless @post.comments.empty? %>
<div id="comments">
<%= render @post.comments %>
</div>
<% end %>
</div>

<div id="replyform">
<%= render "comments/form" %>
</div>

AJAX 轮询和 timeago 插件功能在其他任何地方都可以正常工作,只是当我发表评论并且该评论出现在另一个浏览器的 AJAX 中时,我遇到了这个问题。任何建议、资源或代码都会让我度过一周。感谢您阅读我的帖子。

最佳答案

您的代码在应用程序模板的脚本 block 中调用 $("abbr.timeago").timeago();。这在第一次加载页面时运行,并在当时存在的匹配元素上启用 timeago 功能。稍后动态添加的任何匹配节点(例如您的 AJAX 部分)不会获得时间提前功能。

一种选择是在添加动态内容后再次调用 $("abbr.timeago").timeago()。但是,在添加新功能时很难跟踪和记住这样做,这就是我使用 livequery plugin 的原因。反而。在您的页面中包含 livequery 脚本并将 $("abbr.timeago").timeago(); 替换为以下内容:

$("abbr.timeago").livequery(function () { $(this).timeago(); });

这在现在动态添加的匹配节点上启用任何匹配节点。

关于javascript - 获取 jQuery timeago 插件以识别新加载的 DOM 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4241170/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com