[前][次][番号順一覧][スレッド一覧]

rails:932

From: "y.igarashi" <y.igarashi@g...>
Date: Sat, 11 Feb 2006 15:53:00 -0800
Subject: [rails:932] Re: パラメータの渡し方について

恋塚さん、返答ありがとうございます。

結果的に解決しました。修正が必要だったのは
恋塚さんが指摘されたところと、4.のremote_functionから渡すパラメータ
を2つ与えなければならないところでした。

4.
<<_list_customer_byaddress.rhtml>>
<%= select :customer, :income, @found_customer.collect{|i|i.income},
{'OnChange' => remote_function(:update    => "customer_list",
                              :url       => {:action => get_customer_name},
                              :with      =>
"'income='+escape(value)+'&'+'address=#{params[:address]}'"
                             )}%>


06/02/10 に shachi<shachi@j...> さんは書きました:
> 恋塚です。
> なんとなく
> 普通のfindのconditions使っても同じでは??とか。
>
> On 2006/02/11, at 8:33, y.igarashi wrote:
> >   @found_customer = Customer.find_by_sql("SELECT * from customers
> > where address = "@params[:address]"") )
>
> これを
> @found_customer = Customer.find(:all, :conditions =>(['address = ?
> and income = ?', @params[:address], @params[:income]])
> と。んで、処理
> っていうのじゃ駄目なのかな?
>
> --
> コイヅカ カズユキ 恋塚 和之
> shachi@j...

--
ML: rails@r...
使い方: http://QuickML.com/

[前][次][番号順一覧][スレッド一覧]

       928 2006-02-11 00:33 [y.igarashi@g...     ] パラメータの渡し方について              
       929 2006-02-11 05:09 ┗[shachi@j...         ]                                       
->     932 2006-02-12 00:53  ┗[y.igarashi@g...     ]