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

  • Home
  • SEARCH
  • 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 8134647
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T10:06:45+00:00 2026-06-06T10:06:45+00:00

I have a Play 2.0 app TestController.scala def foo(p1: String) = Action {implicit request

  • 0

I have a Play 2.0 app

TestController.scala

def foo(p1: String) = Action {implicit request =>
  Ok(bar(p1))
}

private def bar(p1: String) = {
//access request parameter here
}

Is there a way to use implicit to pass request to bar

  • 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-06-06T10:06:46+00:00Added an answer on June 6, 2026 at 10:06 am

    Yes, you can:

      def foo(p1: String) = Action { implicit request =>
        Ok(bar(p1))
      }
    
      private def bar(p1: String)(implicit req: RequestHeader) = "content"
    

    The code:

    Action { implicit request
    

    Calls this method on the Action object:

    def apply(block: Request[AnyContent] => Result): Action[AnyContent] = {
    

    So, what you called “request” matches the paramater named “block”. The “implicit” here is optional: it makes the “request” value available as an implicit parameter to other method/function calls.

    The implicit in your “bar” function says that it can take the value of “req” from an implicit value, and doesn’t necessarily need to be passed in explicitly.

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

Sidebar

Related Questions

I have a sample app written in Play and Scala talking to Amazon DynamoDB
I have a JSON template under app/views/Application/movie.json in my Play Framework app. Normally you
I am making an app in which I have to play video file. .flv
I am making an App in which i have to play music from iPod
I have an iPhone/iPad app which play a HTTP Live Stream of a tv
I have a simple android app to play videos. I have a main screen
I have been using play 1.2.5rc4 for development of one app and I have
I have finally made a production worthy app with play, and use the play
We have an Androïd app on Google Play and I'd like to retrieve the
I have a web app(jsp/servlets) which allows users to download audio files and play

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.