1

在链接 href 属性中将一些 jsp url 与 bean 参数结合后,我得到了错误的表示。这里有什么问题?

这是代码:

<form method="post" action="<c:url value="/rest/categories/add/category/to/${categoriesBean.currentCategoryKey}"/>">
<table>
    <tr>
        <td>Parent :</td>
        <td id="parentKey"></td>
    </tr>
    <tr>
        <td>Name :</td>
        <td><input id="categoryName" type="text"/></td>
    </tr>
</table>
</form>

附上演示文稿:

附上演示文稿

4

1 回答 1

2

这样做...不知道,jsp但这是第 1 行唯一的报价问题

<form method="post" action='<c:url value="/rest/categories/add/category/to/${categoriesBean.currentCategoryKey}"/>'‌​&gt;
于 2012-12-06T20:38:22.430 回答