Jslt在A HREF C OUT(Jslt c out in a href)

2019-08-06 10:30发布

我应该怎么写一行:

<a href="User?id=<c:out value="${user.id}" />" >Profile</a>

是否正确? 这shoult给我像档案

我的背景:

<c:forEach items="${requestScope.users}" var="user">
    <tr>
    <td><c:out value="${user.login}" /></td>
<td><c:out value="${user.name}" /></td>
    <td><c:out value="${user.lastname}" /></td>
    <td><a href="User?id=<c:out value="${user.id}" />" >Profile</a></td>
    </tr>
</c:forEach>

Answer 1:

尝试'内部" ,反之亦然

<a href="User?id=<c:out value='${user.id}' />" >Profile</a>


文章来源: Jslt c out in a href
标签: html jsp jstl href