0

我有一个选择框,每次更改时,我都会返回控制器并获取一些数据。然后将此数据加载到 div 中。

jQuery:

   $('#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>

当我尝试使用 firebug 进行调试时,我看到错误是405 method not allowed..furthermore 回复说

仅获取、放置和删除
允许请求。
4

1 回答 1

1

您是否为该操作设置了路线?

于 2010-08-25T00:30:42.480 回答