遇到的问题:业务需要用户输入对应的username以发送私信给指定对象 方案1-input 输入就完事了 缺陷:要输入,麻烦 发给: 方案2-select thymeleaf模板动态获取后端u
输入就完事了
缺陷:要输入,麻烦
<fORM> <label for="recipient-name">发给:label> <input type="text" id="recipient-name">form>
thymeleaf模板动态获取后端usernames列表供用户选择
缺陷:只能选择,无法自定义对象
<form> <label for="recipient-name">发给:label> <select type="text" id="recipient-name"> <option th:each="list:${usernames}" th:value="${list.username}" th:utext="${list.username}">option> select>form>
通过datalist获取和thymeleaf动态获取后端的usernames列表
用户既可以通过input输入username,也可以选择name
<form> <label for="recipient-name">发给:label> <input type="text" id="recipient-name" list="usernames"/> <datalist id="usernames"> <option th:each="list:${usernames}" th:value="${list.username}" th:utext="${list.username}">option> datalist>form>
来源地址:https://blog.csdn.net/twfplayer/article/details/132528663
--结束END--
本文标题: 动态可编辑表单项
本文链接: https://lsjlt.com/news/392691.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0