|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
IDE是好。java中的IDE更是百花齐放,你用jbuilder能说jbuilder赶不上vs吗?用eclipse,netbeans也很舒服啊。我就不明白“稍微差一些”那一些是从哪里差来的。
在上一篇漫笔中,我们给Products的创立页面增加了输出考证,今次的内容十分复杂,来稍稍丑化下Products的列表页面。
1.翻开appviewsadminlist.rhtml文件,能够看到上面的代码- <h1>Listingproducts</h1>
-
- <table>
- <tr>
- <%forcolumninProduct.content_columns%>
- <th><%=column.human_name%></th>
- <%end%>
- </tr>
- <%forproductin@products%>
- <tr>
- <%forcolumninProduct.content_columns%>
- <td><%=hproduct.send(column.name)%></td>
- <%end%>
- <td><%=link_toShow,:action=>show,:id=>product%></td>
- <td><%=link_toEdit,:action=>edit,:id=>product%></td>
- <td><%=link_toDestroy,{:action=>destroy,:id=>product},:confirm=>Areyousure?,:method=>:post%></td>
- </tr>
- <%end%>
- </table>
-
- <%=link_toPreviouspage,{:page=>@product_pages.current.previous}if@product_pages.current.previous%>
- <%=link_toNextpage,{:page=>@product_pages.current.next}if@product_pages.current.next%>
-
- <br/>
-
- <%=link_toNewproduct,:action=>new%>
复制代码 能够看到,list页面实践上是对Products做轮回,然后对每行,每列逐一输入到一个Table中,而link_to函数,我们在后面的内容中也利用过。
<p>
恰恰证明了java的简单,要不怎么没有通过c/c++来搞个这种框架? |
|