我有一个“核对”的链接,与同名控制者的行动相径庭。 其路线是作为POST的要求。 Ive set up the Code but what whening is the jquery$.post fires as Hope, but the html request also when is mean my action is being used two. 我可以说明原因。 谁会发现错误吗?
我的申请。 j)
jQuery.ajaxSetup({
beforeSend : function(xhr) {xhr.setRequestHeader("Accept", "text/javascript")}
});
$(document).ready(function() {
$( ul li.sentence_summary a.correct ).click(function(){
$(this).css("border", "1px black solid");
$.post($(this).attr("href"), null, null, "script");
return false;
});
});
纽约总部
def check
@sentence_author = User.find(params[:user_id])
@sentence = @sentence_author.sentences.find(params[:id])
@sentence.checked_at = Time.now
@sentence.checker_id = current_user.id
respond_to do |format|
if @sentence.save!
flash[:notice] = "Thank you for checking #{@sentence_author.to_s}s sentence."
format.js { }
format.html { redirect_to user_foreign_sentences_path(current_user, :display => :pending) }
format.xml { head :ok }
end
end
end
和诉讼案
alert("testing123");
<>>>>>
我认为,可以部分地作出判决。 部分转而采用下文所示的观点帮助方法,使链接得以链接。
%li{:id => ["sentence", "#{sentence.id}"], :class => "sentence_summary bottom_border_light"}
%div.left
= thumbnail_link_to_user_profile(sentence.user, User::GRAVATAR_M)
%div.left.main_info_container
%div
= link_to_user_profile(sentence.user)
= t( sentences.table.wrote )
%div.main_focus
= sentence.text
%div.bottom_bar
%div.left
= created_at_linked_to_sentence_show_path(sentence)
%div.right.rollover_options
= render_check_options(sentence)
= render_edit_options(sentence)
= render_flag(sentence)
%div.clear
%div.clear
以及这一助手使有关联系得以实现
def render_check_options( sentence)
if sentence.user != current_user and sentence.language == current_user.native_language and sentence.pending?
html = link_to("correct", check_user_sentence_path(sentence.user, sentence), :method => "post", :class => "action_options underline_on_hover always_blue correct")
html += link_to("incorrect", new_sentence_correction_path(sentence), :class => "action_options underline_on_hover always_blue incorrect")
return html
end
end
UPDATE 2* as per tonys advice heres what happens in my firebug console
console.debug($( ul li.sentence_summary a.correct ));
预计正确链接的产出(点击这些链接,然后到正确的html)
[a.action_options /users/9...24/check, a.action_options /users/2...26/check, a.action_options /users/2...27/check, a.action_options /users/9...28/check, a.action_options /users/1.../8/check, a.action_options /users/2...10/check, a.action_options /users/1...11/check, a.action_options /users/9...12/check]
即便在接任以下两任指挥官之后,这些联系也并非残疾人。
$( ul li.sentence_summary a.correct ).unbind( click );
$( ul li.sentence_summary a.correct ).click(function(){
return false;
});
我的html看一看这ul头一li(指出,除非滚动,否则有关联系是隐蔽的,因此,这里的显示有:
<div class="left">
<a href="/users/9"><img alt="D03e17968fe80cd2d3816e86a7e072f9" class="avatar" src="http://gravatar.com/avatar/d03e17968fe80cd2d3816e86a7e072f9.png?d=identicon&r=PG&s=45"></a>
</div>
<div class="left main_info_container">
<div>
<a href="/users/9" class="user_name_link underline_on_hover always_blue">maxwell.wiegand</a>
wrote
</div>
<div class="main_focus">
Aspernatur eum tenetur dolorem impedit dolor modi illum.
</div>
<div class="bottom_bar">
<div class="left">
<a href="/users/9/sentences/24" class="meta-data underline_on_hover">2 days ago</a>
</div>
<div style="display: none;" class="right rollover_options">
<a href="/users/9/sentences/24/check" class="action_options underline_on_hover always_blue correct" onclick="var f = document.createElement( form ); f.style.display = none ; this.parentNode.appendChild(f); f.method = POST ; f.action = this.href;var m = document.createElement( input ); m.setAttribute( type , hidden ); m.setAttribute( name , _method ); m.setAttribute( value , post ); f.appendChild(m);var s = document.createElement( input ); s.setAttribute( type , hidden ); s.setAttribute( name , authenticity_token ); s.setAttribute( value , ZD3boP6x3HjxzvLBQmTsJT2xCWGQoq8j7M0ZSD6UGbE= ); f.appendChild(s);f.submit();return false;">correct</a><a href="/sentences/24/corrections/new" class="action_options underline_on_hover always_blue incorrect">incorrect</a>
<a href="/sentences/24/flags/new" class="action_options underline_on_hover always_blue">flag</a>
</div>
<div class="clear"></div>
</div>
</div>
<div class="clear"></div>