1

以下jsp片段:

<% while(set.next()) { %>

<li>
         <%-- statement 3--%> <a class="thumb" href="/home/non-admin/project uploads/project users/" <% + %> <%= set.getString("UserEmail") %> <% + %> "/" <% + %> <%= set.getString("NameOfThePhoto") %> > <img src="images/portfolio_two/1_thumb.jpg" alt="one"> </a>
          <div class="caption">
            <div class="image-title portfolio_two">&quot;Pier by the sea, Fowey, Cornwall, UK&quot;</div>
          </div>
</li>
<% } %>

在语句 3 中给出错误。IDE 说not a statement"""""" is not serializable in xml 1.0。这是什么错误,为什么会发生?在语句 3 中,我将从数据库中获取的值添加到 href。

4

1 回答 1

2

我试了一下。但是,我仍然不喜欢“项目上传”和“项目用户”中的空格。

href="/home/non-admin/project uploads/project users/<%=set.getString("UserEmail")%>/<%=set.getString("NameOfThePhoto")%>"
于 2012-05-04T05:23:48.283 回答