Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/spring-mvc/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Thymeleaf映射表单绑定_Java_Spring Mvc_Thymeleaf - Fatal编程技术网

Java Thymeleaf映射表单绑定

Java Thymeleaf映射表单绑定,java,spring-mvc,thymeleaf,Java,Spring Mvc,Thymeleaf,db.html HTML 钥匙 价值 要访问表单支持bean的映射属性,请使用\uuu${…}\ uuu预处理器 <form action="#" th:action="@{shot}" method="POST" th:object="${prod}"> <tr> <td><span th:text="${index.index}"></span></td>

db.html

HTML


钥匙
价值

要访问表单支持bean的
映射
属性,请使用
\uuu${…}\ uuu
预处理器

<form action="#" th:action="@{shot}" method="POST" th:object="${prod}">
            <tr>
            <td><span th:text="${index.index}"></span></td>
                <td><input type="text" name="id" th:value="*{id}" th:readonly="readonly" /></td>
                <td><input type="text" name="categoryName" th:value="*{categoryName}" th:readonly="readonly" /></td>
                <td><input type="text" name="subCategoryName" th:value="*{subCategoryName}" th:readonly="readonly" /></td>
                <td><input type="text" name="productBrand" th:value="*{productBrand}" /></td>
                <td><input type="text" name="productSubBrand" th:value="*{productSubBrand}" /></td>
                <td><input type="text" name="series" th:value="*{series}" /></td>
                <td><input type="text" name="model" th:value="*{model}" /></td>
            </tr>
        <tr>
            <td colspan="7">
                            <tr>
                                <th>KEY</th>
                                <th>VALUE</th>
                            </tr>
                            <div th:each="pr, stat: *{mergeMap}">
                                <tr>
                                    <td><input type="text" name="mergeMapKey" th:value="${pr.key}" /></td>
                                    <td><input type="text" name="mergeMapValue" th:value="${pr.value}" /></td>
                                </tr>
                            </div>
                        </table>
                    </td>
                    <td><input type="text" name="tags" th:value="*{tags}" /></td>
                    <td><input type="submit" value="Submit" /></td>
                </tr>

它的作用是先计算内部表达式,然后再计算整个表达式。注意,在这种情况下,不应修改
${pr.key}
,以便更新将反映到绑定到表单的bean的map属性


参考:

mergeMap值未在thymeleaf ui中填充。应使用键预填充映射。这些键将用于相应地更新映射中的值。映射包含键和值,如何也填充其值?
@RequestMapping(value = "/shot")
    public String saveMergeProducts(@ModelAttribute(value="prod") MergedProductInfoDTO prod, BindingResult bindingResult, 
            Model model, HttpServletRequest request) {
        System.out.println(prod.toString());
        return "forward:/backoffice/db";
    }
<form action="#" th:action="@{shot}" method="POST" th:object="${prod}">
            <tr>
            <td><span th:text="${index.index}"></span></td>
                <td><input type="text" name="id" th:value="*{id}" th:readonly="readonly" /></td>
                <td><input type="text" name="categoryName" th:value="*{categoryName}" th:readonly="readonly" /></td>
                <td><input type="text" name="subCategoryName" th:value="*{subCategoryName}" th:readonly="readonly" /></td>
                <td><input type="text" name="productBrand" th:value="*{productBrand}" /></td>
                <td><input type="text" name="productSubBrand" th:value="*{productSubBrand}" /></td>
                <td><input type="text" name="series" th:value="*{series}" /></td>
                <td><input type="text" name="model" th:value="*{model}" /></td>
            </tr>
        <tr>
            <td colspan="7">
                            <tr>
                                <th>KEY</th>
                                <th>VALUE</th>
                            </tr>
                            <div th:each="pr, stat: *{mergeMap}">
                                <tr>
                                    <td><input type="text" name="mergeMapKey" th:value="${pr.key}" /></td>
                                    <td><input type="text" name="mergeMapValue" th:value="${pr.value}" /></td>
                                </tr>
                            </div>
                        </table>
                    </td>
                    <td><input type="text" name="tags" th:value="*{tags}" /></td>
                    <td><input type="submit" value="Submit" /></td>
                </tr>
<div th:each="pr, stat: *{mergeMap}">
    <tr>
        <td><input type="text" name="value" th:value="${pr.key}" readonly="true"/></td>
        <td><input type="text" name="value" th:field="*{mergeMap[__${pr.key}__]}"/></td>
    </tr>
</div>