簡體   English   中英

表單在提交時給出Null

[英]Form gives Nulls when submitted

我正在使用Spring MVC +百里香葉,當我提交表單時,它在綁定結果中始終為我提供驗證錯誤(Null)。 任何建議將不勝感激! 謝謝!

錯誤信息

"Field error in object 'createForm' on field 'authorId': rejected value [null]; codes [NotNull.createForm.authorId,NotNull.authorId,NotNull]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [createForm.authorId,authorId]; arguments []; default message [authorId]]; default message [may not be null]"
@NotNull
@Size(min= 2, max = 100, message = "your title should be between 2 and 100 symbols")
private String title;

@NotNull
@Size(min = 2, message = "Please fill your message")
private String content;

@DateTimeFormat(pattern = "yyyy-mm-dd")
private Date date;

@NotNull
private String authorId;



public String getTitle() {
    return title;
}

public void setTitle(String title) {
    this.title = title;
}

public String getContent() {
    return content;
}

public void setContent(String content) {
    this.content = content;
}

public Date getDate() {
    return date;
}

public void setDate(Date date) {
    this.date = date;
}

public String getId() {
    return authorId;
}

public void setId(String authorId) {
    this.authorId = authorId;
}
}

還有我的HTML

<form id="create-form" method="post" th:object="${createForm}">
    <div><label for="title">Title:</label></div>
    <input id="title" type="text" name="title" th:value="*{title}"/>
    <span class="formError" th:if="${#fields.hasErrors('title')}" th:errors="*{title}">Invalid title</span>
    <div><label for="content">Content:</label></div>
    <textarea name="content" rows="30" cols="100" id="content" th:value="*{content}"></textarea>
    <span class="formError" th:if="${#fields.hasErrors('content')}" th:errors="*{content}">Invalid content</span>
    <div><label for="date">Date:</label></div>
    <input id="date" type="date" name="date" th:value="*{date}"/>
    <span class="formError" th:if="${#fields.hasErrors('date')}" th:errors="*{date}">Invalid date</span>
    <div><label for="authorId">Author ID:</label></div>
    <input id="authorId" type="text" name="authorId" th:value="*{authorId}"/>
    <span class="formError" th:if="${#fields.hasErrors('id')}" th:errors="*{authorId}">Invalid id</span>

    <br/>
    <br/>
    <div><input type="submit" value="Create"/></div>
</form>

如問題評論中所寫:

注釋@NotNull不會保護您免受null 與您和其他開發人員一起編寫此代碼是您自己的合同,在那里不能有null。

這意味着您必須自己驗證數據。 有兩種方法。 您可以創建AuthorTO ,以允許使用null ,然后僅在不存在意外null或僅在前端進行驗證的情況下創建Author

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM