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 6610309
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:49:28+00:00 2026-05-25T19:49:28+00:00

I want to perform some AJAX style data retrieval using the Java Play Framework

  • 0

I want to perform some AJAX style data retrieval using the Java Play Framework and have come across an issue with the ‘route’ script syntax.

The problem is that in the code below @{Movies.show("'+movie.id+'")} gets compiled to url/etc/+movie.id+ rather than url/etc/1.

<script type="text/javascript">
       function showMoreMovies()
       {
       $.getJSON('@{Movies.jsonAllMovies()}', function(movies) {

          var items = [];

          $.each(movies, function(i, movie) 
          { 
          var div_data =  '<div class="movie">'+
                          '<h2 class="movie-title"><a href="@{Movies.show("'+movie.id+'")}">'+movie.title+'</a></h2>'+
                          '<div class="release-date">' + movie.releasedString + '</div>'+
                          '<div class="comments">| comments: ' + movie.commentCount + '</div>'+
                          '</div>';

          $(div_data).appendTo("#movie_results");

          });
       });
       }
</script>

A work around is to hard-code the route url:

<a href="url/etc/'+movie.id+'">

which works, but you lose the benefits of automatic routing.

Has anyone else come across this or found a new solution to this problem?

  • 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-25T19:49:29+00:00Added an answer on May 25, 2026 at 7:49 pm

    It’s quite normal…
    Remind that a groovy script is precompiled at server side and not executed at client side.

    <a href="@{Movies.show("'+movie.id+'")}"> is compiled and groovy parses @{Movies.show("'+movie.id+'")} and generates "url/etc/+movie.id+" which is the URL of action Movies.show(id="+movie.id+")

    You should use this: http://www.playframework.org/documentation/1.2.3/ajax

    var showAction = #{jsAction @Movies.show(':id') /}
    

    And then use it like that:

    var div_data =  '<div class="movie">'+
                    '<h2 class="movie-title"><a href="'+ showAction({id: movie.id}) +'">'+movie.title+'</a></h2>'+
                    '<div class="release-date">' + movie.releasedString + '</div>'+
                    '<div class="comments">| comments: ' + movie.commentCount + '</div>'+
                    '</div>';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a checkbox that I want to perform some Ajax action on the
I have a table on which I want to perform some operations every hour.
Imagine we have to sources to be requested by ajax. I want to perform
I want to perform some action when a link is clicked, I am using
i want to call a php with jquery ajax to perform some database things
I have Windows Form.Now i want to perform some function when the form get
I am using hibernate as ORM tool, i want to perform some common stuff
I have a secure/ sub-directory with several files that I want to perform some
i want to perform some test by using Json . I am using google
I have a WCF service method that I want to perform some action asynchronously

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.