Yesod Import.hs에 가져올 관련된 유형을 찾을 수 없습니다 그것은 could not find E내가</p> <p><code>import Import</code></p> <p>을 가지고 있지만 어디 Import.hs</p> <p><code>import qualified Database.Esqueleto as E</code></p> <p>에하지만 내 처리기 파일에 넣어 가지고
module Handler.MyProfile where
import Import
getMyProfileR :: Handler Html
getMyProfileR = do
now <- liftIO getCurrentTime
wordList <- (runDB $ E.select $ E.from $ \v -> do
where_ (v ^. VocabularyDate E.<. val now)
return v)
defaultLayout $ do
$(widgetFile "myprofile")