我在帖子索引页面中有ajax评论。我决定实施infinitescroll并且工作正常,但是当我向下滚动并且更多帖子加载(无限滚动触发)时,我在该页面上的ajax评论不起作用。我尝试将注释js.coffee添加到posts.js.coffee但是在触发无限滚动后,注释显示为double。我想我需要在infinitescroll之后调用我的评论功能,但不知道我在哪里再次实现它。
comments.js.coffee
# comments.js.coffee
jQuery ->
# Create a comment
$(".commentform")
.on "ajax:beforeSend", (evt, xhr, settings) ->
$(this).find('textarea')
.addClass('uneditable-input')
.attr('disabled', 'disabled');
.on "ajax:success", (evt, data, status, xhr) ->
$(this).find('textarea')
.removeClass('uneditable-input')
.removeAttr('disabled', 'disabled')
.val('');
$(xhr.responseText).hide().insertAfter($(this)).show('slow')
$(document)
.on "ajax:beforeSend", ".comment", ->
$(this).fadeTo('fast', 0.5)
.on "ajax:success", ".comment", ->
$(this).hide('fast')
.on "ajax:error", ".comment", ->
$(this).fadeTo('fast', 1)
posts.js.coffee
$(document).on 'ready, page:change', ->
loading_posts = false
$('a.load-more-posts').on 'inview', (e, visible) ->
return if loading_posts or not visible
loading_posts = true
$.getScript $(this).attr('href'), ->
loading_posts = false
$("abbr.timeago").timeago();
index.js.haml
$('#indexstream').append('#{escape_javascript(render partial: 'post', :locals => { :post => @posts }, :collection => @posts)}');
$('a.load-more-posts').attr('href', '#{posts_path page: @posts.next_page}');
- unless @posts.next_page
$('a.load-more-posts').remove();
感谢您的帮助。
答案 0 :(得分:0)
我委托了这些事件并且工作得很好。
更新代码:
# comments.js.coffee
jQuery ->
# Create a comment
$("body")
.on "ajax:beforeSend", ".commentform", (evt, xhr, settings) ->
$(this).find('textarea')
.addClass('uneditable-input')
.attr('disabled', 'disabled');
.on "ajax:success", ".commentform", (evt, data, status, xhr) ->
$(this).find('textarea')
.removeClass('uneditable-input')
.removeAttr('disabled', 'disabled')
.val('');
$(xhr.responseText).hide().insertAfter($(this)).show('slow')