0

我在jsp中使用它作为面包屑

<div class="breadcrumb">
       <c:url var="home"   value="http://localhost:8080/" />
        <c:forEach var="bc" items="${breadcrumb.tree}" varStatus="status">
            <c:choose>
                <c:when test="${status.index==0}">
                    <a href="/">${home}</a>
                </c:when>
                <c:when test="${status.index == fn:length(breadcrumb.tree)-1 && status.index!=0}">
                    »${bc.name}
                </c:when>
                <c:otherwise>
                    <a href="${bc.value}">»${bc.name}</a>
                </c:otherwise>
            </c:choose>
        </c:forEach>
</div>

我得到了这个——http://localhost:8080/ »products

但我想要家»产品

谁能告诉我会怎样。

4

1 回答 1

0

您正在存储以下值:

http://localhost:8080/

进入变量 home,然后在锚标记中输出。

店铺:

<c:url var="home"   value="http://localhost:8080/" />

输出:

<a href="/">${home}</a>

在消息文件中定义 home,或者忽略分配它。

于 2013-01-31T14:42:32.090 回答