(简单)Ror:在视图中创建帮助器。但是怎么样?

时间:2011-07-05 12:40:29

标签: ruby-on-rails view helper

我正在发现Rails,我确信我想做的事情并不是我所做的。 你能否告诉我如何正确地做到这一点?

我想创建一个帮助器并使用我的“flag”变量来查看我可以使用的背景。

这是我想要的行为:   - 如果我在/ groups /:id中,我想显示背景:id.jpg如果存在的话   - 如果没有,我想显示一个随机图像,这是由我的javascript ImagesAleatoire();

感谢您的帮助

<% flag = false
if (params[:id]) and (request.request_uri[1..7] == "groups/")
    file =  "/images/groups/"+params[:id]+".jpg";
else
    file = ""
end


if (File.exists?("public"+file)) %>
    <% flag = true %>
    <div id="header" style="background : url('<%= file %>') 114px top #2d8872;">
<% else %>
    <div id="header" style="background-color : #2d8872;">
<% end %>


<div id="searchzone">

    <div id="personnage">
    <% unless (flag)    %> <script>Images_Aleatoire(); </script> <% end %>
    </div> 
</div>
...

2 个答案:

答案 0 :(得分:0)

app/helpers/下的帮助:

module FlagHelper
  def flag_exists?
    flag_file && File.exists?("public"+flag_file)
  end

  def flag_file
    "/images/groups/"+params[:id]+".jpg" if params[:id]
  end
end

在你看来:

<% if (flag_exists?) %>
    <div id="header" style="background : url('<%= flag_file %>') 114px top #2d8872;">
<% else %>
    <div id="header" style="background-color : #2d8872;">
<% end %>


<div id="searchzone">
  <div id="personnage">
    <% unless (flag_exists?) %>
      <script>Images_Aleatoire();</script>
    <% end %>
  </div> 
</div>

答案 1 :(得分:0)

你可以试试这个辅助功能

def group_bg_picture
  if (params[:controller] == "groups") && (params[:id])
    file = "/images/groups/#{params[:id]}.jpg";     
    "background:url('#{file}') 114px top #2d8872;" if File.exists? "public"+file 
  else
    ""
  end
end

并在您看来:

<% bg_picture = group_bg_picture %>
<div id="header" style="<%= bg_picture || 'background-color : #2d8872;' %>">
<% unless (bg_picture.present?) %> 
  <script>Images_Aleatoire(); </script> 
<% end %>