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

rails:3223

From: Koichi Shimamura <maf01541@n...>
Date: Tue, 15 Sep 2009 08:48:40 +0900
Subject: [rails:3223] Re: 存在しないテンプレートファイルの対処法

島村です。

> view_paths.find_template('notexist')
> #=> MissingTemplate
> かしら。

ありがとうございます。以下のように実装しました。

    begin
      view_paths.find_template('welcome/_' + @my_template)
    rescue
      @my_template = 'my_default.html'
    end


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

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

      3218 2009-09-14 02:26 [maf01541@n...       ] 存在しないテンプレートファイルの対処法  
      3219 2009-09-14 03:46 ┗[sakuro@2...         ]                                       
->    3223 2009-09-15 01:48  ┗[maf01541@n...       ]