Grails word separating -
i using take param user after want separate strings check words existing or not in database. code/algorithm should use separate words string param?
you should send words array parameter, e.g.
?word=hello&word=world&word=something&word=else
in controller can retrieve words list of strings with
list<string> allwords = params.list('word')
Comments
Post a Comment