#!/usr/local/bin/perl
use warnings;
use 5.014;
use Mojolicious::Lite;
use DBI;

# ...

get '/choose' => sub {
    my $self = shift;
    my $lastname = $self->param( 'lastname' );
    my $sth = $dbh->prepare( "SELECT id, firstname, birthday FROM $table WHERE lastname == ?" );
    $sth->execute( $lastname );
    my @rows;
    while ( my $row = $sth->fetchrow_hashref ) {
        push @rows, { id => $row->{id}, firstname => $row->{firstname}, lastname => $lastname, birthday => $row->{birthday} };
    }
    if ( not @rows ) {
        $self->redirect_to( 'new_entry' );
    } elsif ( @rows == 1 ) {
        my $id = $rows[0]{id};
        $self->redirect_to( "/show_address?id=$id" );   # show_address needs parameter "id"
    } else {
        $self->stash( rows => \@rows );
        $self->render( 'choose' );
    }
};

# ...

When I use redirect_to, is there another way to pass a parameter than writing it directly in the url ("/show_address?id=$id")?

link|improve this question

2  
Did you try looking at the Documentation (search.cpan.org/~sri/Mojolicious-1.76/lib/Mojolicious/…)? – Dimitar Petrov Aug 12 '11 at 16:13
And those versions go away so fast... metacpan.org/module/Mojolicious::Lite#Sessions – pwes Aug 22 '11 at 17:43
feedback

1 Answer

up vote 1 down vote accepted

redirect_to can build url for you and replace placeholders in your routes with your params.

If you need to build url with params you can do following:

my $url = $self->url_for("/show_address");
$self->redirect_to($url->query(id => $id));

Also note that you can pass parameters with query by setting flash variables: http://mojolicio.us/perldoc/Mojolicious/Controller#flash

That variables will be cleaned up by Mojolicious with next request.

link|improve this answer
1  
Which of these two methods would you prefer? – sid_com Aug 28 '11 at 10:19
1  
It absolutely depends on what you need and how you build your app. If you are passing parameters to the same application - flash is a good choice. However, passing query params is more failsafe: flash() method uses cookies to pass parameters around and also cookies are limiting you in params size more than query string. Personally I use both, but prefer query params in redirect. For example in auth process flash is really good: github.com/zipkid/mojolicious-login/blob/master/lib/Login/… – yko Aug 28 '11 at 16:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.