在铁路3中,我想触发一条 j,在用户点击链接以加入一个确定用户是否有资格加入的小组后显示出人满为患(控制人员行动确定他们是否合格)。
我需要把id带给控制器,接收控制器的电文,然后使用电文触发 j。
我可以拿 j子触发。 谁能帮助我看一看我谁错了? 我认为,这符合这一联系。
controller action:
def join
@group = Group.find(params[:id])
if ineligible
@message = "Sorry, you can t join."
elsif current_user
if !@group.already_joined(current_user)
@message = GroupUser.create(@group,current_user,nil,nil)
else
@message = "You re already registered for this group"
end
else
@message = "If you re already a user, but not a member of this group, please login, and then click the join link again. If you aren t a user yet, please join!"
end
end
javacript
<%= javascript_include_tag "jquery" %>
<script>
$(#message).msg( <% @message %> , {
type : confirm
});
</script>
意见
<%= link_to Join ,{:onclick => {:controller => groups , :action => join , :id => @group.id} }%>
<div id="message"></div>