javalite / activeweb

ActiveWeb moved, see below

Home Page:http://javalite.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Multiple value request parameter is not passed into the next view

ipolevoy opened this issue · comments

for instance, if you request this:

http://host/app?account=123&account=456

then on the next page, I expect to see a collection:

<#list request.account as acc> 
${acc}
</#list>

this is not working, but instead we are getting a string value of the array of values!