我应该如何写:
<a href="User?id=<c:out value="${user.id}" />" >Profile</a>
正确吗?它应该给我像个人资料一样的东西
我的情况:
<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>
尝试'内部",反之亦然
'
"
<a href="User?id=<c:out value='${user.id}' />" >Profile</a>