0

我在我的 Rails 3 应用程序中使用了 Jvectormap。当我点击它时,我想隐藏地图并可视化包含所选国家信息的部分。

我处理地图点击并向服务器发送 GET 请求。

users.js.coffee.erb

$ ->
  $("#world-map").vectorMap
    onRegionClick: (event, code) ->
      $('#world-map').hide(1000)
      $.get('/users/statistics', {code: code});
      $('#statistics').show(1000)

users_controller.rb

def statistics
 @country = Country.find_by_two_letter_code((params[:code]).downcase)  
 render :nothing => true

结尾

这是回应

在 2013-06-02 17:54:49 +0200 开始 GET "/users/statistics?code=ET" for 127.0.0.1

由 UsersController#statistics 处理为/

参数:{"code"=>"ET"}

Country Load (0.2ms) SELECT "countries".* FROM "countries" WHERE

"国家"."two_letter_code" = 'et' LIMIT 1

渲染文本模板(0.0ms)

在 2ms 内完成 200 OK (Views: 0.6ms | ActiveRecord: 0.2ms)

和视图

显示.html.erb

 <p> <div id="world-map" style="width: 620px; height: 300px"></div>
      <div id="statistics" style="width: 620px; height: 300px; display:none;">
       <section>
        <%= render partial:'statistics', :locals => {:country => @country}  %>
      </section>
      </div>
    </p>

_statistics.html.erb

<%= link_to '<i class="icon-remove"></i>'.html_safe%>
<%=country%>
<%=@country%>

现在,一切正常,但部分没有可视化国家价值。我不明白是否必须在 ajax 获取请求之后重新渲染部分,以及如何。

我试图以另一种方式更改控制器,但行为是相同的。

def statistics
 @country = Country.find_by_two_letter_code((params[:code]).downcase)  
 render 'users/_statistics'
end
4

2 回答 2

0

我认为由于您不需要刷新页面而只需要显示国家/地区的详细信息,因此您可以使用 ajax。

显示.html

<p> <div id="world-map" style="width: 620px; height: 300px"></div>
  <div id="statistics" style="width: 620px; height: 300px; display:none;">
   <section>
    <div id="place_partial_here"></div>
  </section>
  </div>
</p>

在控制器中

def statistics
  @country = Country.find_by_two_letter_code((params[:code]).downcase)  
  respond_to do |format|
    format.js
  end
end

在 statistics.js.haml #我对 haml 很满意。

$('#place_partial_here').replaceWith("#{escape_javascript(render partial: 'country_data', locals: {country: @country})}");

在 _country.html.haml

#place_partial_here #id is denoted in haml using hash
  = country.name #display country name
  = country.code #display code

部分必须在 id 'place_partial_here' 内有视图代码,以便可以在进一步的 ajax 调用中使用

于 2013-10-15T05:29:15.487 回答
-1

你试过这个吗

渲染 :partial => "统计", :collection => @country

于 2013-10-15T04:21:18.370 回答