gpt4 book ai didi

haskell - 从数据库中检索 Digestive Functors 的选择列表(Snap/Heist)

转载 作者:行者123 更新时间:2023-12-02 22:27:12 24 4
gpt4 key购买 nike

我有一个处理添加和编辑的地址表单(如果添加什么都没有,如果编辑只是地址)。到目前为止,我已经用一些项目硬编码了州和国家/地区的选择。

addressForm :: Monad m => Maybe Address -> [Address] -> Form Text m Address
addressForm a addrs =
Address
<$> "id" .: choiceWith (addrToChoice addrs) (fmap id a)
<*> "name" .: string (fmap name a)
<*> "street" .: string (fmap street a)
<*> "city" .: string (fmap city a)
<*> "state" .: choiceWith stateChoices (fmap state a)
<*> "country" .: choiceWith countryChoicesRequired (fmap country a)
<*> "zipcode" .: string (fmap zipcode a)


stateChoices :: [(Text, (Maybe String, Text))] -- (htmlValue, (realValue, labelValue))
stateChoices = [("ON", (Just "ON", "Ontario")), ("NE", (Just "NE", "Nebraska"))]

countryChoicesRequired :: [(Text, (String, Text))]
countryChoicesRequired = [("CA", ("CA", "Canada")), ("US", ("US", "United States of America"))]

现在我想从数据库中检索州和国家的列表。我可以将州/国家/地区列表传递给表单,就像我已经在处理地址列表一样,但此表单也是 3 或 4 个其他表单(新广告商表单、新客户表单等)的子表单我不需要像处理地址列表那样在表单之外列出州/国家/地区列表。

这是我刚刚添加的新表单,用于获取国家/地区信息:

addressForm' :: (HasPostgres p, Monad m) => Maybe Address -> [Address] -> p (Form Text m Address)
addressForm' a addrs = do
countries <- countryChoices'
return $ Address
<$> "id" .: choiceWith (addrToChoice addrs) (fmap id a)
<*> "name" .: string (fmap name a)
<*> "street" .: string (fmap street a)
<*> "city" .: string (fmap city a)
<*> "state" .: choiceWith stateChoices (fmap state a)
<*> "country" .: choiceWith countries (fmap country a)
<*> "zipcode" .: string (fmap zipcode a)

data Region = Region
{ code :: String
, fullName :: String
}

countryChoices' :: HasPostgres m => m [(Text, (String, Text))]
countryChoices' = do
countries <- getCountries
return $ abbrToChoice countries

abbrToChoice :: [Region] -> [(Text, (String, Text))]
abbrToChoice regions =
map (\ a -> ((pack $ code a), (code a, (pack $ fullName a)))) regions

这是调用它的处理程序:

editAddressH :: ([(T.Text, Splice AppHandler)] -> AppHandler ()) -> Addr.Address -> Maybe Int64 -> AppHandler ()
editAddressH renderer a userId = do
addresses <- Addr.list userId
(view, result) <- runForm "form" $ Addr.addressForm' (Just a) addresses -- line 233
case result of
Just x -> do
r <- Addr.edit x -- line 236
case r of
_ -> renderer [("success", showContents), ("dfForm", hideContents)]
Nothing -> renderer $ ("success", hideContents) : ("addressList", addressScriptSplice addresses) : phoneSplices ++ digestiveSplices view

我得到的错误是这样的:

src/Site.hs:233:44:
No instance for (HasPostgres
(digestive-functors-0.5.0.1:Text.Digestive.Form.Internal.FormTree
(Handler App App) v0 (Handler App App)))
arising from a use of `Addr.addressForm''
Possible fix:
add an instance declaration for
(HasPostgres
(digestive-functors-0.5.0.1:Text.Digestive.Form.Internal.FormTree
(Handler App App) v0 (Handler App App)))
In the second argument of `($)', namely
`Addr.addressForm' (Just a) addresses'
In a stmt of a 'do' expression:
(view, result) <- runForm "form"
$ Addr.addressForm' (Just a) addresses
In the expression:
do { addresses <- Addr.list userId;
(view, result) <- runForm "form"
$ Addr.addressForm' (Just a) addresses;
case result of {
Just x -> do { ... }
Nothing
-> renderer
$ ("success", hideContents)
: ("addressList", addressScriptSplice addresses)
: phoneSplices ++ digestiveSplices view } }
src/Site.hs:236:40:
Couldn't match expected type `Addr.Address'
with actual type `digestive-functors-0.5.0.1:Text.Digestive.Form.Internal.FormTree
m0 Text m0 Addr.Address'
Expected type: Addr.Address
Actual type: Form Text m0 Addr.Address
In the first argument of `Addr.edit', namely `x'
In a stmt of a 'do' expression: r <- Addr.edit x

最佳答案

看起来您需要 monadic功能。它可能看起来像这样:

addressForm :: Monad m => Maybe Address -> [Address] -> Form Text m Address
addressForm a addrs = monadic $ do
stateChoices <- getStatesFromDB
countryChoices <- getCountriesFromDB
return $
Address
<$> "id" .: choiceWith (addrToChoice addrs) (fmap id a)
<*> "name" .: string (fmap name a)
<*> "street" .: string (fmap street a)
<*> "city" .: string (fmap city a)
<*> "state" .: choiceWith stateChoices (fmap state a)
<*> "country" .: choiceWith countryChoices (fmap country a)
<*> "zipcode" .: string (fmap zipcode a)

关于haskell - 从数据库中检索 Digestive Functors 的选择列表(Snap/Heist),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12799908/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com