Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6238507
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T11:13:36+00:00 2026-05-24T11:13:36+00:00

Hi I am using the following for my api in Lift: case api ::

  • 0

Hi I am using the following for my api in Lift:

case "api" :: "all" :: _ Get req => for {
    val after <- req.param("after")
    val before <- req.param("before")
    val limit <- req.param("limit")
} yield JsonResponse(json(ResponseLimitAfterBefore(limit.toInt,
                                                   after.toString,
                                                   before.toString)))

My issue is if any of the three parameters are missing it gives an error. Can anyone help me with how to assign a value to any of them if any parameter is missing? For example if after is not in the url then how can I assign a default value to after?

Thanks,
-Faran

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T11:13:38+00:00Added an answer on May 24, 2026 at 11:13 am

    If seems you do not understand how for comprehensions work within Scala. Consider the following:

    scala> val x: Option[String] = Some("X")
    x: Option[String] = Some(X)
    
    scala> val y: Option[String] = None
    y: Option[String] = None
    
    scala> for(xx <- x; yy <- y) yield yy
    res0: Option[String] = None
    
    scala> for(yy <- y; xx <- x) yield xx
    res1: Option[String] = None
    

    Notice that even though xx has a value, the result is None. Given that req.param gives you a Box[String] (which is similar to an Option[String]), you could just do something like this (if you want a response whatever params are passed):

    JsonResponse(json(
    ResponseLimitAfterBefore(
      limit.map(_.toInt).openOr(0), 
      after.openOr("after default"), 
      before.openOr("another default")
    )))
    

    Or, if you just want to provide a default response overall, rather than a paramterised default response:

    (for { 
      after <- req.param("after")
      before <- req.param("before") 
      limit <- req.param("limit") 
    } yield JsonResponse(json(ResponseLimitAfterBefore(
      limit.toInt, after, before)))
    ) openOr BadRequestResponse()
    

    I would suggest playing with both LiftResponse subtypes more and also getting a firm grasp on what for comprehensions actually do.

    Hope that helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.