MVC: значение в выпадающем меню не установлено на выбранное значение - остается 0 - PullRequest
1 голос
/ 18 мая 2019

Это приложение весенней загрузки, которое использует диспетчер шаблонов thymeleaf.Имеет простую форму с выпадающим меню .Опции заполняются из базы данных, и их имена (или идентификаторы) могут правильно отображаться в форме, но после выбора опции и отправки значения формы для данной выбранной переменной остается 0 .

Пока я получаюправильное значение переменной content, categoryId всегда имеет значение 0 после отправки (или ноль, если я изменяю ее тип с int на Integer).

Я предполагаю, что модель неправильно "связана"на jokeForm, но я не знаю, как правильно связать его.Я следовал пример 1 .Я надеюсь, что кто-то может легко определить проблему, просто посмотрев на мой код.Разрывы кода в методе submitForm().

HTML-форма:

        <html>
        <body>
        <form action="#" th:action="@{/new}" th:object="${jokeForm}" method="post"> 
            <table>
                <tr>
                    <td>Content:</td>
                    <td><input type="text" th:field="*{content}" /></td>
                    <td th:if="${#fields.hasErrors('content')}" th:errors="*{content}">Content Error</td>
                </tr>
                <tr>
                    <td>Category:</td>
                    <td>
                        <select name="categoryId" th:field="*{categoryId}">
                         <option  value="0" th:each="category : ${categories}"
                            th:value="${category.id}"
                            th:utext="${category.name}"/>
                         <!-- <option th:each="category : *{categories}"
                            th:value="*{category.id}"
                            th:utext="*{category.name}"/> -->
                         </select>
                    </td>
                    <td th:if="${#fields.hasErrors('categoryId')}" th:errors="*{categoryId}">category Error</td>
                </tr>
               <tr> 
                    <td><button type="submit">Submit</button></td>
                </tr>
            </table>
        </form>
    </body>
</html>

Контроллер

    @GetMapping("/new")
    public String showForm( Model model) {
       DEBUG("showForm");
       JokeForm form = new JokeForm();
       categories = categoryRepository.findAll();


       DEBUG(categories.get(0).toString());
       DEBUG(categories.get(1).toString());

       //form.setCategories(categories); //not working
       model.addAttribute("jokeForm", form);          
       model.addAttribute("categories",categories);

       return "form";
    }


    @PostMapping("/new")
    @ResponseBody
    public String submitForm(@ModelAttribute JokeForm jokeForm) {
        DEBUG("submitForm");
        //String content = jokeForm.getContent();
        DEBUG(jokeForm.getContent());
        DEBUG(jokeForm.getCategoryId().toString());


        Joke j = new Joke();
        j.setContent(jokeForm.getContent());
        //j.setCategoryId(jokeForm.getCategoryId());

        //DEBUG(Integer.toString(jokeForm.getCategoryId()));
//CAUSES ERROR value of CategoryId is Integer -> null       System.out.println(Integer.toString(jokeForm.getCategoryId())); 
//PRODUCES ERROR value of CategorId is int (because no category matches)        j.setCategory(categoryRepository.findById(jokeForm.getCategoryId().intValue()).get(0));

jokeRepository.save(j); //save

        return "Saved";
    }

JokeForm

        public class JokeForm {


    @NotEmpty(message = "content may not be empty")
    private String content;

    @NotEmpty(message = "category may not be empty") 
    private int categoryId; //int-> 0, Integer -> null

        /*
    @NotEmpty(message = "category may not be empty") 
    private Category category;

    public Category getCategory() {
        return category;
    }

    public void setCategory(Category category) {
        this.category = category;
    }

    private List<Category> categories;
    public List<Category> getCategories() {
        return categories;
    }

    public void setCategories(List<Category> categories) {
        this.categories = categories;
    } */

    public String getContent() {
        return content;
    }

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

    public Integer getCategoryId() {
        return categoryId;
    }

    public void setCategory(Integer categoryId) {
        this.categoryId = categoryId;
    }

}

1 Ответ

0 голосов
/ 18 мая 2019

Вы устанавливаете value="0" для всех параметров.

<select> должно быть:

<select th:field="*{categoryId}">
   <option th:each="category : ${categories}"
      th:value="${category.id}"
      th:utext="${category.name}"/>
      <!-- <option th:each="category : *{categories}"
         th:value="*{category.id}"
         th:utext="*{category.name}"/> -->
</select>

Редактировать: и добавить (установщик) setCategoryId() в классе JokeForm

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...