0

I created an link to an site with an extraparam "icd1":

<%= link_to "#{s.von} - #{s.bis}  #{s.bezeichnung}", icd_show1_path(s, :icd1 => @icd1 )  %>

From this site i want to redirect, with the id given in @icd1:

<%= link_to "#{@icd2.von}  #{@icd2.bis} #{@icd2.bezeichnung}", icd_show_path(@icd1) %>

But i get the error:

Couldn't find Icd1 with id=icd1
{"id"=>"icd1"}

How can i access my param?

4

1 に答える 1

3

params オブジェクトを使用します。

だから、このようなもの:

@icd1 = params[:icd1]

これにより、ビューでアクセスできるようになります。

于 2013-08-14T20:34:53.423 に答える