Maven项目如何在html中调用setter函数?

时间:2017-04-17 11:52:41

标签: java html spring thymeleaf

我还有一个maven项目,并且我将用户的对象发送到html,我想使用此对象的setter函数来填充对象中的属性

我怎么能这样做?或者甚至可能!

这是我试过的

我的HTML代码

<form action="#" th:action="@{/view/Register}" th:object="${user}"
    method="post">
    <p> Name: <input type="text" th:field="${user.getAccount().setUserName()}" required="required" /> </p>
    <p> Email : <input type="text" th:field="${user.getAccount().setEmail()}" required="required" /> </p>
    <p> Password : <input type="text" th:field="${user.getAccount().setPassword()}" required="required" /> </p>
    <p> Profile :<input type="file" name="picture" /> </p>
    <p> Male : <input type="radio" th:field="${user.getAccount().setGender()}" value="Male" checked="true" /> Female : <input type="radio" th:field="${user.getAccount().setGender()}"
            value="Female" />
    </p>
    <input type="submit" />
</form>

注意: 用户是界面 我发送对象&#34;用户user = new Student()&#34; 当Student是类实现User

0 个答案:

没有答案