我有一套选择的盒子,我每次改动都会回到我的控制员手中,收集一些数据。 这些数据随后被装成零件。
j 质量:
$( #groups ).change(function() {
$( #emails ).load( /notifications/get , {value: $(this).val()});
});
主计长:
class NotificationsController < ApplicationController
def get
return "test"
end
end
观点:
<div id="groups" class="left">
<%=select_tag employee[group_id][] , options_for_select( current_user.groups.map {|s| ["#{s.name} - #{s.description} (" + s.employees.find(:all, :conditions=>{:subscribed=>true}).count.to_s+")", s.id]}), :multiple => true, :size =>6, :style => "width:250px"%>
</div>
<p id="emails"> </p>
当我试图用火力 de倒时,我发现错误是405 方法不允许
。
Only get, put, and delete requests are allowed.