Scalaz 验证

发布于 2024-10-12 03:26:31 字数 754 浏览 1 评论 0原文

我正在尝试在我们的项目中使用 scalaz 验证,但遇到了以下情况:

def rate(username: String, params: Map[String, String]): ValidationNEL[String, Int] = {
  val voteV:Validation[String, RateVote] = validate(params, "vote") flatMap {v: String => RateVote(v)}
  val voterV:Validation[String, Sring] = validate(params, "voter")

  ... 
}

现在我必须返回包含可能的参数错误(如果有)的 ValidationNEL,或者使用经过验证的参数来调用该方法:

storage.rate(username, voter, vote): Validation[String, Int]

我知道,我可以使用|@|对于第一部分,但此代码

(voterV.liftFailNel |@| voteV.liftFailNel) { (voter, rv) =>
  storage.rate(username, voter, rv)
}

将返回 ValidationNEL[String, Validation[String, Int]]。有没有办法“展平”这个结果,以获得 ValidationNEL[String, Int] ?

I'm trying to use scalaz validation in our project and have ran into a following situation:

def rate(username: String, params: Map[String, String]): ValidationNEL[String, Int] = {
  val voteV:Validation[String, RateVote] = validate(params, "vote") flatMap {v: String => RateVote(v)}
  val voterV:Validation[String, Sring] = validate(params, "voter")

  ... 
}

Now I have to return ValidationNEL containing possible parameter errors, if there were any, or use validated parameters to call the method:

storage.rate(username, voter, vote): Validation[String, Int]

I know, I could use |@| for the first part, but this code

(voterV.liftFailNel |@| voteV.liftFailNel) { (voter, rv) =>
  storage.rate(username, voter, rv)
}

will return ValidationNEL[String, Validation[String, Int]]. Is there a way to "flatten" this result, to get the ValidationNEL[String, Int]?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可可 2024-10-19 03:26:31

您可以通过折叠将结果展平。

result.fold(e => e.fail, x => x.liftFailNel)

You can flatten the result with a fold.

result.fold(e => e.fail, x => x.liftFailNel)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文