我在表单中使用动态字段,并希望屏蔽显示的某些值并屏蔽用户插入的值。有没有办法在Thymeleaf这样做? 我试过了:
<input type="password" name="password_config" th:field="*{MyList[__${firstArray.index}__][__${secondArray.index}__].value}" class="form-control" placeholder="Value" />
但是加载页面时输入框始终显示为空白,即使显示的对象中的值不为空。以下行用于操作和显示值,但不掩盖值:
<input type="text" name="password_config" th:field="*{MyList[__${firstArray.index}__][__${secondArray.index}__].value}" class="form-control" placeholder="Value" />
提前致谢。
答案 0 :(得分:0)
我设法以这种方式将文字放在<input type="password"
中:
<input type="password" name="pass" th:value="${subscription.pass}" />
不幸的是,如果您查看页面来源,您将以纯文本格式查看属性value
的内容。我认为不可能使用th:field
填充此输入。