我希望在我的Yesod应用程序中有一个接受ID列表的路径
从this page看起来您可以在路线中使用*来接受列表,但是当我尝试使用时
/api/user/#UserId UserR GET DELETE
/api/users/display/*UserIds DisplayR GET
我收到了错误
Not in scope: type constructor or class ‘UserIds’
Perhaps you meant one of these:
‘UserId’ (imported from Import.NoFoundation),
我如何接受路线中的UserId列表?
答案 0 :(得分:0)
路线需要
/api/users/display/*[UserId] DisplayR GET
然后Handler需要输入输入类型[UserId]