如何在java twrill模板中使用JsonNode数组

时间:2018-02-13 06:27:55

标签: json playframework fasterxml

我遇到Play Twirll模板的问题,我已经通过JsonNode对象来播放模板,我可以访问属性但是在数组的情况下,我无法解析它。

<div class="dr-name">
<a href="#profile">
  @json.findPath("givenName").asText() 
  @json.findPath("lastName").asText(),
  json.findPath("educationDetails").elements().forEachRemaining((jsonNode) -> {});
  @for( a <- 1 to 10){
    println( "Value of a: " + a );
  }
</a></div> 

1 个答案:

答案 0 :(得分:0)

所以你忘了@PutMapping("/activate") public void activateNotification(@RequestBody NotificationCommand command, @AuthenticationPrincipal Principal principal) { 之前的@