html – 如何设置百里香th:其他变量的字段值

前端之家收集整理的这篇文章主要介绍了html – 如何设置百里香th:其他变量的字段值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的文本输入字段,我必须从一个对象设置默认值,并将其最终值保存在其他对象中.以下代码不工作.
<div th:object="${form}">
    <input class="form-control"
           type="text"
           th:value="${client.name}"  //this line is ignored
           th:field="*{clientName}"/>
</div>

表单是DTO对象,客户端是数据库中的Entity对象.

解决这种情况的正确方法是什么?

通过不工作我的意思 – 让我们说,初始值是client.name =“Foo”和form.clientName = null.
我需要输入字段显示值为“Foo”,并在表单提交form.clientName之后变为“Foo”.但输入字段不显示任何内容,并在提交form.clientName值仍为null;

如果有任何人有兴趣,请使用以下结构解决此问题(在另一个问题中找到答案).

th:attr="value = ${client.name}"

解决方法

你可以接近这个方法.

而不是使用th:字段使用html id&名称.使用th:值设置值

<input class="form-control"
           type="text"
           th:value="${client.name}" id="clientName" name="clientName" />

希望这将有助于您

原文链接:https://www.f2er.com/html/230851.html

猜你在找的HTML相关文章