<div dir="ltr">You're quoting Dancer 1 so I'm assuming you use this.<div><br></div><div>Dancer2 exits the sub for you when you "redirect", so it's not required to put the "return" statement with it.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 18, 2015 at 12:33 PM, Tiago Quintela <span dir="ltr"><<a href="mailto:kintela@gmail.com" target="_blank">kintela@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">







<p><span>Hi,</span></p>
<p><span></span><br></p>
<p><span><a href="http://search.cpan.org/~yanick/Dancer-1.3134/lib/Dancer.pm#redirect" target="_blank">http://search.cpan.org/~yanick/Dancer-1.3134/lib/Dancer.pm#redirect</a></span></p>
<p><span>"Generates an HTTP redirect (302)."</span></p>
<p><span>I believe the RFC2616 doesn’t forbid message-body on 300-ish routes so that’s probably why:</span></p>
<p><span>"</span><span>Redirection is deferred until after the current route or filter has been processed."</span></p>
<p><span></span><br></p>
<p><span>So, if you:</span></p>
<p><span></span><br></p>
<p><span>redirect ‘/someroute’ if $something;</span></p>
<p><span>return $content;</span></p>
<p><span>"means": issue a http 302 to ‘/someroute’ w/ $content as message body. </span></p>
<p><span><br></span></p><p><span>and,</span></p><p><span><br></span></p>
<p><span>return redirect '‘/someroute’ if $something</span></p>
<p><span>“means": issue a http 302 to ‘/someroute’ and w/o message-body</span></p><p><span><br></span></p>
<p><span>cheers,</span></p>
<p><span>Tiago</span></p></div><div class="gmail_extra"><div><div class="h5"><br><div class="gmail_quote">On 18 March 2015 at 07:08, Pedro Melo <span dir="ltr"><<a href="mailto:melo@simplicidade.org" target="_blank">melo@simplicidade.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Writing this from memory, but redirect doesn't abort the current request processing, so you need to return redirect on all places.<br>
<br>
Sent from my iPhone<br>
<div><div><br>
> On 17/03/2015, at 23:46, David H <<a href="mailto:untg99@gmail.com" target="_blank">untg99@gmail.com</a>> wrote:<br>
><br>
> So I had this question and I couldn't find any answer, since the two options were giving me confusion. I wanted t pass control off to another route if a certain action happened.<br>
><br>
> I had this in a route:<br>
> if ($actionHappened) {<br>
>    redirect '/CheckOffOrderItem/';<br>
> }<br>
><br>
> and it was working fine, it would pass control off to that route and then any return would go to the page and return what I wanted.<br>
><br>
> I then went to add another line for something else below this one<br>
> if ($theOtherThingHappened) {<br>
>  redirect '/CheckOffProduct/'<br>
> }<br>
><br>
> and it worked, about twice, then stopped working and wouldn't process the redirect, it would get to the condition and go through but just skip processing the route and continue with the existing route, so I read somewhere that "return redirect" should be used and not "redirect" when redirecting.<br>
><br>
> Is this true? and why?<br>
> My top one is still working and hasn't stopped but I want to know what the logic behind these two are. When I changed the second one to 'return redirect' it started working again.<br>
><br>
> Thanks,<br>
><br>
> David Hancock<br>
</div></div>> _______________________________________________<br>
> dancer-users mailing list<br>
> <a href="mailto:dancer-users@dancer.pm" target="_blank">dancer-users@dancer.pm</a><br>
> <a href="http://lists.preshweb.co.uk/mailman/listinfo/dancer-users" target="_blank">http://lists.preshweb.co.uk/mailman/listinfo/dancer-users</a><br>
_______________________________________________<br>
dancer-users mailing list<br>
<a href="mailto:dancer-users@dancer.pm" target="_blank">dancer-users@dancer.pm</a><br>
<a href="http://lists.preshweb.co.uk/mailman/listinfo/dancer-users" target="_blank">http://lists.preshweb.co.uk/mailman/listinfo/dancer-users</a><br>
</blockquote></div><br><br clear="all"><div><br></div></div></div><span class="HOEnZb"><font color="#888888">-- <br><div>Tiago Quintela</div>
</font></span></div>
<br>_______________________________________________<br>
dancer-users mailing list<br>
<a href="mailto:dancer-users@dancer.pm">dancer-users@dancer.pm</a><br>
<a href="http://lists.preshweb.co.uk/mailman/listinfo/dancer-users" target="_blank">http://lists.preshweb.co.uk/mailman/listinfo/dancer-users</a><br>
<br></blockquote></div><br></div>