表单提交百叶窗和Spring引导后如何保持在同一页面上?

时间:2018-11-15 16:48:40

标签: java spring spring-boot redirect thymeleaf

大家好,我对标题中提到的内容有疑问。是否可以留在同一页面上并提交。我发现了一些使用javascript的东西,但对我不起作用,因为我正在使用百里香和弹簧靴。或者我只是不知道如何适应我的情况。

百里香代码:

<form th:action="@{/tweets/tweet}" th:object="${tweet}" method="post">
  <div class="row">
    <div class="col">
  <input type="text" th:field="*{content}" class="form-control"  placeholder="What's happening? Tell us!">
    </div>
    <div class="col">
      <input class="form-control" type="submit" value="Submit" />
    </div>
  </div>
</form>

控制器类:

@Controller
@RequestMapping("tweets")
@Slf4j
public class TweetController {

 private TweetService tweetService;

public TweetController(TweetService tweetService) {
this.tweetService = tweetService;
}


@PostMapping("/tweet")
@ResponseStatus(CREATED)
public Tweet tweet(@Valid @ModelAttribute("tweet")  Tweet tweet, Principal 
principal, BindingResult result) {
if(result.hasErrors()){

   //do somethign
}

if (!tweet.getContent().equals(null) && !tweet.getContent().equals("") && !tweet.getContent().isEmpty()) {
  tweetService.createTweet(tweet.getContent(), principal);
}

 }

 @GetMapping("/")
 public String goToIndex(Model model){
   model.addAttribute("tweet",new Tweet());
return "overview";
}

我有server.context-path=/api 我对此主题还有一个其他问题。当我想将其重定向到另一页时,我得到了一个空白页。不是错误,不是例外,只是空白页。有什么帮助吗?我是新来的。

2 个答案:

答案 0 :(得分:0)

您的示例未显示tweet()方法返回的内容。它应该返回一个Tweet对象,但是没有任何返回值。您打算如何处理该返回值?如果您某种程度上无法使用Javascript处理,请摆脱@ResponseStatus(CREATED)并返回指向您的html文件的ModelString,例如:

@PostMapping("/tweet")
public String tweet(@Valid @ModelAttribute("tweet")  Tweet tweet, Principal 
principal, BindingResult result) {
    if(result.hasErrors()){
       //do somethign
    }

    if (!tweet.getContent().equals(null) && !tweet.getContent().equals("") && !tweet.getContent().isEmpty()) {
        tweetService.createTweet(tweet.getContent(), principal);
    }
    return "redirect:/name-of-html-file";
}

reference

如果您希望百里香叶处理推文和HttpStatus,则可以返回以下内容:

ModelAndView model = new ModelAndView("your-view");
model.addAttribute(tweet);
model.setStatus(HttpStatus.CREATED);
return model;

答案 1 :(得分:0)

是的,可以使用ajax。我建议尽管使用jQuery。因此,如果您想提交表单并停留在同一页面上,则可以执行以下操作。

HTML

<form id="tweet-form" th:action="@{/tweets/tweet}" th:object="${tweet}" method="post">
  <div class="row">
    <div class="col">
  <input type="text" th:field="*{content}" class="form-control"  placeholder="What's happening? Tell us!">
    </div>
    <div class="col">
      <input id="submit-form" class="form-control" type="button" value="Submit" />
    </div>
  </div>
</form>

更改:

  • 向表单添加了一个ID。
  • 在输入中添加了一个id。
  • 更改按钮的提交输入类型。

jQuery

$('#submit-form').on('click', function() {
   var form = $('#tweet-form');
   $.ajax({
      url: form.attr('action'),
      data: form.serialize(),
      type: post,
      success: function(result) {
          // Do something with the response.
          // Might want to check for errors here.
      }, error: function(error) {
          // Here you can handle exceptions thrown by the server or your controller.
      }
   })
}

控制器

@PostMapping("/tweet")
@ResponseStatus(CREATED)
public Tweet tweet(@Valid @ModelAttribute("tweet")  Tweet tweet, Principal 
principal, BindingResult result) {
    if(result.hasErrors()){
        // Throw an exception or send a null Tweet.
    }
    if (!tweet.getContent().equals(null) && !tweet.getContent().equals("") && !tweet.getContent().isEmpty()) {
        tweetService.createTweet(tweet.getContent(), principal);
    }
    // You are returning a Tweet, so you must return something. 
    return tweet;
}

您的控制器几乎保持不变。只是记得要退货。