0

我有一个应用程序,它实现了组功能。每个组有 n 个成员。此外,每个组都有一个组特定的个人资料图片。

我已经能够为组功能实现自动完成,只记住组名。我也参考了以下教程:- http://railsforum.com/viewtopic.php?id=23188

我将ruby​​ 1.8.7rails 2.0.2用于项目特定目的。我已经在适当的目录中安装了 auto_complete 插件。我在Ubuntu 10.04操作系统上

我想再集成两件事作为当前组自动完成功能的一部分

1> 当我在自动完成文本字段中输入组名时,我应该还可以看到根据输入的文本显示的适当的组特定个人资料图片。

2> 根据自动完成文本字段中输入的文本,我还应该能够看到每个组对应的成员数量。

我面临以下相同的障碍:

目前,我实现的基于组名获取基本自动完成作品的代码如下所示:-

groups_controller.rb中

auto_complete_for :investor_group, :title

组的index.html.erb

<%=stylesheet_link_tag "groups"%>
<%= javascript_include_tag :defaults %>

Search for a investor group: <%= text_field_with_auto_complete :investor_group, :title,  {}, {:method => :get} %><%=submit_tag "Search"%>

config/routes.rb

map.resources :investor_group, :collection => {:auto_complete_for_investor_groups_title => :get }

我目前能够显示特定组的图像并通过使用组的index.html.erb中的以下代码检索属于组的成员总数:-

<%for inv_group in @investor_groups%>
<div class="inv_group_img" align="center"><%=image_tag "investor_groups/#{inv_group.title}.jpg"%></div>
  <div class="inv_group_details">
<%=inv_group.activated_members.size%><br>
<%end%>

视图的对齐方式目前可能是干草线,但这不是我的直接关注点。因此,请忽略相同的内容。

我知道我需要做什么,并且我已经能够在我的 groups_controller.rb 中编写一些代码

为了得到我需要的东西,我尝试了以下方法: -

def calculate_members_count
    @investor_group = InvestorGroup.find(params[:id])
    @members_count = @investor_group.activated_members.size
    return "@members_count", :title
  end

现在这应该给我组标题/名称和 members_count。我不确定如何在同一方法中获取图像。

此外,如果它可以正常工作,我已经做了一些猜测工作,以便将更改反映在已经编写的自动完成功能中。我不太确定他们是否正确......但是就这样......

我在index.html.erb中更改了以下内容

Search for a investor group: <%= text_field_with_auto_complete :investor_group, :calculate_members_count,  {}, {:method => :get} %><%=submit_tag "Search"%>

我在groups_controller.rb auto_complete_for 中更改了以下内容:investor_group,:calculate_members_count

直到这里我真的不确定我是否正确,如果是这样,我真的无法弄清楚我现在需要在routes.rb中反映什么变化

我还想问,我是否需要对我的模型进行一些更改。我不这么认为,只是以防万一。

另外我猜如果自动完成文本字段只支持一个属性的查询搜索,在这种情况下我是否必须定义一个自定义的自动完成搜索以满足我的要求?如果是的话,我真的不知道如何抢占先机,以及如何去做。我可能只是现在还需要一个自定义的javascript。

请帮助我。对此的任何输入都会非常方便..

感谢您的耐心阅读和时间..


Question Edited


我只想提一下,我是 Rails 的新手,几乎没有 2.5 个月的经验。

经过大量搜索,我意识到为了实现多个字段的自动完成功能,我必须使用自定义的自动完成方法。

我参考了以下教程来获得自定义的自动完成功能:- http://cobaltedge.com/auto-complete-text-fields-in-rails-2

我自定义的自动完成方法如下所示:-

 def auto_complete_for_investor_group_title
    re = Regexp.new("^#{params[:investor_group][:title]}", "i")

    #re1 = Regexp.new("^#{params[:investor_group][:title].jpg}", "i")

    find_options = { :order => "title ASC", :conditions => ['title LIKE ?', "%#{params[:title]}%"] }

   @investor_group = InvestorGroup.find(:all, find_options).collect(&:title).select { |title| title.match re }

render :inline => "<%= content_tag(:ul, @investor_group.map { |title| content_tag(:li, h(title)) }) %>"
  end

我的 index.html.erb 用于自动完成自定义方法的工作如下所示:-

<% form_tag({:action => :search}) do %> 搜索投资者组:<%= text_field_with_auto_complete :investor_group, :title, :autocomplete => "off"%><%=submit_tag "Search"%> <%结束%>

在routes.rb中进行的适当更改如下所示:-

  map.auto_complete ':controller/:action', :requirements => { :action => /auto_complete_for_\S+/ }, :conditions => { :method => :get }

此代码适用于在搜索时获取组标题。我想修改此代码以获取组配置文件特定图像和属于组的成员总数。

上传的图像是 type file_field 并且具有名为 的属性:uploaded_data

我还需要获取属于某个组的成员总数。目前,属于一个组的图像和成员总数通过 index.html.erb 分别使用以下代码显示:-

 <%for inv_group in @investor_groups%>
        <div class="inv_group contentTableGray">
          <div class="inv_group_img" align="center"><%=image_tag "investor_groups/#{inv_group.title}.jpg"%></div>
          <div class="inv_group_details">
            <span style="float:right;padding-right: 10px;"><%=show_edit_link_for_group(inv_group)%></span>
            <%=link_to inv_group.title, :action => :show, :id => inv_group%>        
            <div style="clear:both;"></div>
            <%=truncate(inv_group.description,100)%>        
          </div>
          <div class="inv_group_details" style="width:14%;text-align: center;">
            <%=inv_group.activated_members.size%><br>

          ....( code continues further.. )

我还发现一个组的大小可以在 groups_controller 中使用如下代码获取:-

 @investor_group = InvestorGroup.find(params[:id])
    @members = @investor_group.activated_members.size

我真的不确定如何将此代码修改为方法 auto_complete_for_investor_group_title 。

激活的成员被视为来自以下investor_group.rb 模型的关联

has_many :activated_members, :through => :investor_group_members, :source => :investor, :conditions => "activated is true"

使用上述信息,我无法弄清楚如何将 属于组的成员总数和组特定的个人资料图片 添加到适用于标题的现有自动完成功能中。

你能帮我做同样的事情吗?

非常感谢。

4

1 回答 1

2

所以,在部分:

  1. 当您获得投资者组时,您只会获得带有“collect(&:title)”调用的标题。删除它以获取整个对象;
  2. 您不需要使用正则表达式,您已经在条件中获得了与 LIKE 匹配的标题;
  3. 而不是内联渲染,尝试制作一个在 LI 标记内渲染所有你需要的部分。当您只需要一个小文本时,渲染 inline 和 content_tag 很好,但是对于“更大的东西”,更喜欢局部。

对不起任何英语。

更新:

collect(&:title) 说“从你找到的所有投资人组中,只给我他们的头衔”。因此,完全删除它,仅使用:

InvestorGroup.find(:all, find_options)

它说“给我你找到的investor_groups”,所以你将有一组investor_groups 可以在部分中使用。有了这个,您可以在自动完成列表中显示您想要的数据,就像您在 index.html 中所做的那样,使用“for”语句,将图像、标题和激活的成员大小放入“li”元素中。

对不起任何英语。

重新更新

差不多好了。对于自动完成工作,来自自动完成方法的响应必须是一个列表。所以,部分会像:

<ul>
  <% for inv_group in @investor_group2 %>
    <li><%=h inv_group.title %>, <%=h inv_group.activated_members.size %></li>
  <%end%>
</ul>

每个项目由一个 li 标签包裹,并且全部由一个 ul 标签包裹。如果您查看前面的代码,这正是它的工作原理:

content_tag(:ul, @investor_group2.map { |title| content_tag(:li, h(title)) })

一个 ul 内容标签,包装 li 包装标题的内容标签。

而且我确实将标题和大小分开在两个 erb 中,因为我从未尝试将两个信息放在同一个中,如果可行,现在不要。

对不起任何英语。

于 2011-03-31T20:51:34.693 回答