yesod

    2熱度

    1回答

    我有一個架式耶索德應用程序,並創建了一個簡單的小工具,看起來像這樣,位於單獨的模塊: module Widget.Header where import Prelude import Yesod twitterWidget :: MonadWidget m => String -> m() twitterWidget twitteruser = do toWidgetBody

    3熱度

    1回答

    我想通過Yesod中的id獲得記錄。我的代碼是: getEditActorR :: Handler Html getEditActorR = do actorId <- runInputGet $ ireq intField "id" actor <- runDB $ get $ Key $ PersistInt64 (fromIntegral actorId) d

    1熱度

    1回答

    從做作config/models: Inventory name Text description Text Container name Text ContainerSlot container ContainerId item InventoryId Maybe 現在,使用Esqueleto,我想用LeftOuterJoin得到插

    2熱度

    1回答

    什麼可能導致以下錯誤? uncaught exception: SqliteException (SQLite3 returned ErrorConstraint while attempting to perform step.) 奇怪的是,大多數規格的失敗,此錯誤使用withApp。 但是,如果我修改wipeDB在TestImport.hs做 system "rm project-name

    0熱度

    1回答

    在我的頁面中我有一個搜索字段(文本區域)。 Yesod Form使用起來相當複雜,所以我想我只是使用Javascript來獲取用戶鍵入的值。但是,那麼我的Haskell程序如何獲得這個值呢?

    0熱度

    1回答

    我想創建一個按鈕來刪除數據庫表。 在耶索德,我需要先創建一個 <form [email protected]{DeleteTableR}> <button method=post> ,並使用yesod add-handler創建一個處理程序? 這是常見的實踐嗎? 我不想有一個路徑/deletetable只是爲了這個目的。

    0熱度

    1回答

    我是新來的都耶索德和數據庫,所以請容忍我這個基本的問題: 我打算寫SQL程序,並把它們存儲在.sql文件和耶索德Web應用程序只是調用這些SQL文件,而不是直接在Haskell中編寫查詢。 這是常見的做法嗎? 我認爲在SQL中編寫查詢本身比在Haskell中編寫查詢更合適。 歡迎任何評論。

    4熱度

    1回答

    我是一個新手,哈斯克爾&耶索德,我嘗試使用Control.Concurrent.Async模塊做的東西異步。 (該代碼是基於:https://hackage.haskell.org/package/async-2.1.1/docs/Control-Concurrent-Async.html#v:withAsync) quizWidget = do --Get first question

    0熱度

    1回答

    由於IO can not be used inside Yesod Template,如何在頁面上顯示簡單的當前時間? 在我.hamlet文件,是這樣的: <h2> #{show $ getCurrentTime } getCurrentTime :: IO UTCTime

    2熱度

    1回答

    Yesod的新手,我想知道如何使用static/img目錄下的圖片作爲div的背景圖片。我用的腳手架網站,並曾嘗試: .mydiv { background-image: url("static/img/bg.jpg"); } 但似乎在向http://myhost/tmp/static/img/bg.jpg最後的URL改變。