【问题标题】:Haskell + Persistent: parse error possibly incorrect indentation or mismatched bracketsHaskell + Persistent:解析错误可能缩进不正确或括号不匹配
【发布时间】:2021-01-25 23:19:57
【问题描述】:

过去几个月我一直在学习 Haskell,我正在努力学习这个关于 Haskell + Persistent 的教程:

https://www.yesodweb.com/book/persistent#persistent_code_generation

module Main where

{-# LANGUAGE GADTs                      #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE OverloadedStrings          #-}
{-# LANGUAGE QuasiQuotes                #-}
{-# LANGUAGE TemplateHaskell            #-}
{-# LANGUAGE TypeFamilies               #-}
import Database.Persist
import Database.Persist.TH
import Database.Persist.Sqlite
import Control.Monad.IO.Class (liftIO)

mkPersist sqlSettings [persistLowerCase| 
Person
    name String
    age Int
    deriving Show
|]

我以前没有遇到过这种语法(他们在教程中谈论“准引号”,所以我猜这就是它的含义),但我认为我直接从教程中获取了代码,它应该可以编译。但是,它不会,我收到以下错误:

/home/will/programming/learn-haskell/postgres-example/app/Main.hs:15:1: error:
    parse error (possibly incorrect indentation or mismatched brackets)
   |
15 | Person
   | ^


--  While building package postgres-example-0.1.0.0 using:
      /home/will/.stack/setup-exe-cache/x86_64-linux-tinfo6/Cabal-simple_mPHDZzAJ_3.0.1.0_ghc-8.8.4 --builddir=.stack-work/dist/x86_64-linux-tinfo6/Cabal-3.0.1.0 build exe:simple --ghc-options " -fdiagnostics-color=always"
    Process exited with code: ExitFailure 1

这是我的 cabal 文件中的配置:

name:                                postgres-example
version:                             0.1.0.0
synopsis:                            An example of using Haskell and PostGres with persistent
description:                         Please see README.md
license:                             BSD3
license-file:                        LICENSE
author:                              Will Taylor
copyright:                           2020, Will Taylor
category:                            Web
build-type:                          Simple
cabal-version:                       >=1.10

executable simple
  hs-source-dirs:       app
  main-is:              Main.hs
  ghc-options:          -threaded -rtsopts -with-rtsopts=-N
  build-depends:        base
                        , persistent
                        , persistent-template
                        , persistent-postgresql
                        , monad-logger
  default-language:       Haskell2010

如果有人可以帮助我,那就太棒了。

【问题讨论】:

  • 你能发布完整的错误吗?我经常看到possibly incorrect indentation or mismatched brackets,而且经常缺少)
  • 我已经编辑了帖子以包含完整的错误。

标签: haskell cabal yesod haskell-persistent


【解决方案1】:

我也是 Haskell 的初学者。按照相同的文档,我试图将架构定义移动到另一个模块并将其导入 main.它根本无法处理相同的错误消息。

在尝试复制/粘贴代码并使用 postgres 测试 2-3 小时后,我在此过程中意识到了一些事情。在文档中,包含语言功能的 cmets 最先出现在文件顶部。

只需先将 cmets 移到顶部

{-# LANGUAGE EmptyDataDecls             #-}
{-# LANGUAGE FlexibleContexts           #-}
{-# LANGUAGE GADTs                      #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE MultiParamTypeClasses      #-}
{-# LANGUAGE OverloadedStrings          #-}
{-# LANGUAGE QuasiQuotes                #-}
{-# LANGUAGE TemplateHaskell            #-}
{-# LANGUAGE TypeFamilies               #-}
{-# LANGUAGE DerivingStrategies         #-}
{-# LANGUAGE StandaloneDeriving         #-}
{-# LANGUAGE UndecidableInstances       #-}

module Sql.Schema    where

import           Database.Persist
import           Database.Persist.TH


share [mkPersist sqlSettings, mkMigrate "migrateAll"] [persistLowerCase|
Person
    firstName String
    lastName String
    age Int Maybe
    PersonName firstName lastName
    deriving Show
BlogPost
    title String
    authorId PersonId
    deriving Show
|]

【讨论】:

  • 你这个可爱的美人!我实际上已经放弃了这个,因为我找不到任何有帮助的东西!这么简单的解决一个愚蠢的问题 - 谢谢!
猜你喜欢
  • 2014-05-05
  • 2015-01-26
  • 2018-01-21
  • 1970-01-01
  • 2022-09-28
  • 1970-01-01
  • 2017-06-06
  • 2016-09-28
  • 2021-07-02
相关资源
最近更新 更多