5

ハムレットに奇妙な問題があります。$ forallを使用してリストを反復処理しようとしていますが、「範囲外」エラーが発生し続けます。Win7でyesod0.9.2.2を実行しています。

ひどいデザインはさておき、私がどこで間違っているのか誰かが知っていますか?「db」の変数補間を削除すると、正常に実行できます。

関連する集落:

 !!!
<h1> Database List
<hr>
<table>

  <tr>
       <td> Host
       <td> Status
  $forall db <- dbList
  <tr>
       <td> #{host db}

関連するハンドラーコード:

data Database = Database {dbType :: DBType,
                        host :: String,
                        user :: String,
                        password :: String
                       }


dbList = [Database Oracle "cpalmerws" "system" "***",
          Database Oracle "bdblnx" "system" "***",
          Database Postgres "localhost" "postgres" "***"]

getDBStatusR :: Handler RepHtml
getDBStatusR = do
  mu <- maybeAuth
  defaultLayout $ do
    setTitle "DB Status Page"
    addWidget $(widgetFile "dbstatus")

yesod develを実行すると、このエラーが発生します。

Handler\DBStatus.hs:47:17:
    Not in scope: `db'
    In the result of the splice:
      $(widgetFile "dbstatus")
    To see what the splice expanded to, use -ddump-splices
    In the first argument of `addWidget', namely
      `$(widgetFile "dbstatus")'
    In the expression: addWidget ($(widgetFile "dbstatus"))
Starting development server...

dist\devel.hs:3:1:
    Failed to load interface for `Application':
      it is not a module in the current program, or in any known package.
Exit code: ExitFailure 1
4

1 に答える 1

8

テンプレートのインデント レベルが間違っています:

$forall db <- dbList
    <tr>
        <td>#{host db}

あなたのバージョンでは、行は $forall の範囲外です。

于 2011-09-16T14:47:36.680 に答える