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

rails:124

From: Nowake <nowake@f...>
Date: Sun, 03 Apr 2005 13:40:11 +0900
Subject: [rails:124] Re: イベントごとのロジック処理について

野分です。

Kazuhiro Yoshida wrote:

>外しているかもしれませんが、
>ActionController のメソッド定義がそれにあたるのでは。
>  
>

そうでした。Hackしきれなかったようです……

app/controllers/ にある xxx_controller.rbのActionControllerにアクション
と同じメソッドを
作ればOKですね。

こんな感じにしました。(ロジックの部分だけですが)

class DebateController < ApplicationController
scaffold :topic
require 'xml/siki-template'
SikiTemplate::HandlerForRails.setup
def edit
local_assigns = {
:show => "../show/3",
}
render_text( @template.render( default_template_name, local_assigns ) )
end
#以下同様……
end

Amritaでも使えそうですね。

#erbとのギャップをここで吸収するのも大変そうだなあ……
#オブジェクトとテンプレートのインピーダンスミスマッチも存在するし……


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

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

       122 2005-04-02 18:26 [nowake@f...         ] イベントごとのロジック処理について      
       123 2005-04-02 18:33 ┗[moriq@m...          ]                                       
->     124 2005-04-03 06:40  ┗[nowake@f...         ]