关于“foreach循环”中遇到的几个问题总结

2017-11-09

转自:https://www.cnblogs.com/sushu-yaya/p/6823302.html 用于自己学习所用

1.列表页面用"foreach循环"的时候数据没有显示,此时需要检查你对象模型中属性的首字母是否大写,切记不能大写(本人在做一个项目的时候,对象模型是别人建立的,属性首字母大写了,导致最后列表页面数据不显示,后来一问老师,说改为小写,瞬间好了)。
2.数据存储不到表里:在映射文件中没有指定数据表列名的时候,数据表列名必须和属性名相同(应用于hibername操作数据库中)。

3.用foreach的时候,从其他页面跳到本页面数据内容不显示,此时在其他页面中必须把跳转到本页面的路径改为浏览器中的访问路径。

<table class="table_style">
                            <thead>
                                <tr>
                                    <th>
                                            <input id="all" type="checkbox" onclick="selectAll();" value="checkbox"> 
                                        <label>全选 label>
                                    th>
                                    <th>样本编号th>
                                    <th>被检者姓名th>
                                    <th>被检者IDth>
                                    <th>医院名称th>
                                    <th>样本类型th>
                                    <th>手机th>
                                    <th>创建时间th>
                                tr>
                            thead>
                            <c:forEach var="hello" items="${key}" step="1" >
                                <tr>
                                    <td>
                                          <input  type="checkbox"   value="${hello.iD}" name="checkbox">
                                    td>
                                    <td>
                                        <a href="javascript:void(0)">${hello.sampleNo}a>
                                    td>
                                    <td>${hello.name}td>
                                    <td>${hello.pId}td>
                                    <td>${hello.hospitalName}td>
                                    <td>${hello.sampleType}td>
                                    <td>${hello.cellPhone}td>
                                    <td>${hello.createTime}td>
                                tr> 
                            c:forEach>   

                        table>

 

转载于:https://www.cnblogs.com/yibao/p/7808005.html

你可能感兴趣的:(关于“foreach循环”中遇到的几个问题总结)