在我的主页面(index.html)上,我列出了一些具有类别字段的对象。在页面顶部我有元素选择类别。那么,最好的方法是这样处理它:当更改选择类别时 - 更改对象列表(仅查看具有所选类别的对象)。
我可以只使用Java + Spring + Thymeleaf来制作它,还是必须使用JavaScrypt或其他工具?
更新:我的代码
< div class =“grid-30”>
< select id =“selectCategory”th:field =“$ {selected.id}”>
<选项th:each =“category:$ {allCategories}”th:value =“$ {category.id}”th:text =“$ {category.name}”>所有类别< / option>
< /选择>
< / DIV>
因此,当元素更改时,我希望它切换到url“/category/"+${selected.id}