2

実行時にhamletテンプレート内のルートにパラメーターを渡そうとしています。

  buildFeedRow :: Item [Attribute Text] -> GWidget a a ()
  buildFeedRow item = do
    let f = unpackItem item
        u :: Text = url f
    [whamlet|
    <tr>
      <td>
        <a href="#{url f}">#{url f}
      <td>#{nextCrawlTime f}
      <td>#{crawlDelay f}
      <td>
         <a href="@{DeleteFeedR u}">Delete
      <td>Edit |]

タイプエラーで失敗します。

Couldn't match type `Route a' with `ConsoleRoute'
Expected type: ConsoleRoute -> [(Text, Text)] -> Text
Actual type: Route a -> [(Text, Text)] -> Text
Expected type: GHandler
                 a a (ConsoleRoute -> [(Text, Text)] -> Text)
  Actual type: GGHandler
                 a
                 a
                 (Data.Enumerator.Iteratee Data.ByteString.Internal.ByteString IO)
                 (Route a -> [(Text, Text)] -> Text)
In the first argument of `lift', namely `getUrlRenderParams'
In the first argument of `(>>=)', namely `lift getUrlRenderParams'

私の質問は、集落テンプレートのルートにパラメータをどのように渡すかです。

4

1 に答える 1

1

ウィジェットの型署名は一般的すぎるかもしれないと思います。ルートを使用しているため、ルートはファンデーションタイプに依存するため、タイプが必要になります

buildFeedRow :: Item [Attribute Text] -> GWidget YourFoundation YourFoundation ()
于 2011-09-18T08:07:01.797 に答える