0

ネストされたモデルがあります

resources :customers do 
 resources :readings
end

顧客のショー ビューから ../customerid/readings/new ビューにアクセスしたいと思います。

顧客表示ビューで、ボタンを使用して新しい測定値ビューを呼び出すにはどうすればよいですか?

お客様のshow.html

<%- model_class = Customer -%>
<div class="page-header">
<h1><%=t '.title', :default => model_class.model_name.human %></h1>
</div>

<dl class="dl-horizontal">
<dt><strong><%= model_class.human_attribute_name(:name) %>:</strong></dt>
<dd><%= @customer.name %></dd>
<dt><strong><%= model_class.human_attribute_name(:customer_currency) %>:</strong></dt>
<dd><%= @customer.customer_currency %></dd>
<dt><strong><%= model_class.human_attribute_name(:payment_terms) %>:</strong></dt>
<dd><%= @customer.payment_terms %></dd>
<dt><strong><%= model_class.human_attribute_name(:phase_type) %>:</strong></dt>
<dd><%= @customer.phase_type %></dd>
<dt><strong><%= model_class.human_attribute_name(:billing_address) %>:</strong></dt>
<dd><%= @customer.billing_address %></dd>
<dt><strong><%= model_class.human_attribute_name(:first_name) %>:</strong></dt>
<dd><%= @customer.first_name %></dd>
<dt><strong><%= model_class.human_attribute_name(:last_name) %>:</strong></dt>
<dd><%= @customer.last_name %></dd>
<dt><strong><%= model_class.human_attribute_name(:mobile) %>:</strong></dt>
<dd><%= @customer.mobile %></dd>
<dt><strong><%= model_class.human_attribute_name(:email) %>:</strong></dt>
<dd><%= @customer.email %></dd>
</dl>


<div class="form-actions">
<%= link_to t('.back', :default => t("helpers.links.back")),
          customers_path, :class => 'btn'  %>
<%= link_to t('.edit', :default => t("helpers.links.edit")),
          edit_customer_path(@customer), :class => 'btn' %>


<%= link_to t('.destroy', :default => t("helpers.links.destroy")),
          customer_path(@customer),
          :method => 'delete',
          :data => { :confirm => t('.confirm', :default => t("helpers.links.confirm",   :default => 'Are you sure?')) },
          :class => 'btn btn-danger' %>
</div>
4

2 に答える 2

2

時間内に解決しました

  <%= link_to 'Readings', customer_readings_path(@customer) %> |
于 2012-11-28T21:20:22.950 に答える
1

ルーティングに関する Ruby on Rails ガイドの「2.7 ネストされたリソース」の章によると、次の URL を取得するには/customers/:customer_id/readings/new、これを使用します。

customer_readings_path(@customer) # Generate the path for new Reading which belongs to @customer
于 2012-11-28T21:21:05.473 に答える