我有一个像这样的持久模型:
Organization sql=organizations
Id UUID default=uuid_generate_v1mc
name Text
UniqueOrganizationName name
deriving Show Eq Typeable
我想在我的 Yesodroutes
文件中使用组织名称,如下所示:
/#OrganizationName/onboarding/business/about OnboardingBusinessAboutR POST
使用OrganizationName
or UniqueOrganizationName
there 给我这个错误:
/Users/maximiliantagher/Documents/Mercury/hs/mercury-web-backend/src/Foundation.hs:41:1: error:
• Data constructor ‘OrganizationName’ cannot be used here
(Perhaps you intended to use TypeInType)
• In the type ‘OrganizationName’
In the definition of data constructor ‘OnboardingBusinessAboutR’
In the data instance declaration for ‘Route’
我可以使用新类型作为解决方法,只是想知道这是否有必要。
我想缺少PathPiece
实例是一个问题,但如果只是这样,那么错误将是No instance for (PathPiece ...)
.
使用OrganizationName
或UniqueOrganizationName
将没问题。