up vote 1 down vote favorite
share [g+] share [fb]

I have a controller and a gsp. I go ahead and attempt to build the project but receive issues on my gsp.

It is telling me "The current scope already contains a variable of the name it"

<html>
  <head>
    <title>Book Collector</title>
    <meta name="layout" content="main" />
  </head>
  <body>
    <h1>Book Editor</h1>
    <table>
      <tr>
        <th>Book Name</th>
        <th>Author</th>
        <th>Page Number</th>
        <th>Vendor</th>
        <th>Date Scanned</th>
        <th>Date Read</th>
      </tr>
      <% bookList.each { it -> %>
      <tr>
        <td><%= it.bookName %></td>    //this is where the error starts
        <td><%= it.author %></td>      //error (it)
        <td><%= it.pageNumber %></td>  //error (it)
        <td><%= it.lastScan %></td>    //error (it)
        <td><%= it.lastRead %></td>    //error (it)
        <% } %>
      </tr>
    </table>
  </body>
</html>

Am I not allowed to use 'it' like that? Or is there something obvious that I'm missing?

link|improve this question

1  
since you are just starting out, I would recommend starting at www.grails.org – Aaron Saunders Sep 7 '10 at 23:48
1  
but you're right.. You can not use 'it ->', but if you omit 'it ->' I believe it would work - but it's not really the Groovy/Grails way of doing it! – sbglasius Sep 8 '10 at 9:54
feedback

1 Answer

up vote 2 down vote accepted

http://www.grails.org/Views+and+Layouts

<html>
<head>
    <title>Book list</title>
</head>
<body>
<h1>Book list</h1>
<table>
    <tr>
        <th>Title</th>
         <th>Author</th>
    </tr>
    <g:each in="${books}">
        <tr>
             <td>${it.title}</td>
             <td>${it.author}</td>
        </tr>
    </g:each>
</table>
</body>
</html>
link|improve this answer
Thank you for the very quick response. I'll do some more reading. Could you give me a brief explanation why something like: <% bookList.each { it -> %> doesn't work? There is some information in the bookList that I don't need which is why I chose to iterate through and grab what I wanted. I bought the book Groovy Recipes to kind of learn from but the author assumes basic knowledge. (I have been reading a bit of grails in the mean time) – StartingGroovy Sep 7 '10 at 23:54
i would recommend The Definitive Guide to Grails & Grails in Action they are both excellent books – Aaron Saunders Sep 7 '10 at 23:56
1  
The solution provided allows you to just pick out what you need... also I believe "it" is there by default... Please mark answer as correct if it was helpful, it will encourage more people to respond to your questions. There is a wealth of knowledge in StackOverflow so it is best to search here before posting a question – Aaron Saunders Sep 7 '10 at 23:59
Thank you Aaron, any recommended books for Groovy? (Groovy Recipes does a pretty good job, but doesn't cover everything) – StartingGroovy Sep 7 '10 at 23:59
Groovy In Action and groovy.codehaus.org, TONS of examples here – Aaron Saunders Sep 8 '10 at 0:06
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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