此 jQuery 代码应启用 2 个操作。
第一个动作是每 7 秒自动重新加载页面(refreshPartial();)
第二个动作是在单击链接时自动输入到chat_box
字段中。
仅当我删除“refreshPartial();”时,第二个操作才能正常工作 从下面。
是冲突错误还是什么?我该如何解决?
<% if current_user %>
<% content_for(:head) do %>
<%= javascript_tag do %>
jQuery(document).ready(function () {
refreshPartial();
$('a#username').click(function() {
$(".chat_box#body_input").val($(this).attr('value'));
});
});
function refreshPartial() {
$.ajax({
url: "<%= show_user_path(@user) %>/refresh_part?page=<%= params[:page] %>",
type: "GET",
dataType: "script",
});
}
<% end %>
<% end %>
<% end %>
refresh_part.js.erb
$('#chat_comment').html("<%= j(render(:partial => 'users/comment')) %>");
setTimeout(refreshPartial,7000);
控制器
def refresh_part
@comments = @user.comment_threads.order("updated_at DESC").page(params[:page]).per(10)
@comment = @user.comment_threads.build
respond_to do |format|
format.js
end
end
视图(表单输入字段)
<a name="comment_part"></a>
<form accept-charset="UTF-8" action="/users/John_Smith/comments" class="new_comment" data-remote="true" enctype="multipart/form-data" id="new_comment" method="post">
<input name="utf8" type="hidden" value="✓" />
<input name="authenticity_token" type="hidden" value="vvwHabqywaDXv0Sv5NrbPP5kfdwhfewovbHkegkOUm2/2uJdNs=" />
<input class="chat_box" id="body_input" name="comment[body]" type="text" />
<button type="submit" class="btn">Submit</button>
</form>