0

我一直在努力使用 jQuery UI 'autocomplete' 让我的 Rails 应用程序使用简单的自动完成功能我已经在使用 jRails,所以我尝试使用jrails_auto_complete

我按照 README 中的说明进行了设置,但是当我开始在框中输入内容时出现以下 javascript 错误:

Failed to load resource: the server responded with a status of 404 (Not Found)

URL: /users/auto_complete_for_user_name?term=a

当我调试它时,它说:

找不到 ID=auto_complete_for_user_name 的用户

有任何想法吗?我认为这需要的不仅仅是列出的两个步骤,但我很确定我正确设置了这两个步骤......

4

1 回答 1

0

发现您需要将以下内容添加到您的 routes.rb 文件中:

map.resources :users, :collection => {:auto_complete_for_user_name => :get}
于 2010-08-23T21:05:09.733 回答