我刚刚开始接触Spring MVC。我正在使用一个外部加密货币API。我尝试使用for each循环来迭代JSON响应,以便使用addAttribute方法将每个值插入到模型中。不过,我只得到了最后一个值。
控制器:
@RequestMapping(value = "/Tables", produces = MediaType.APPLICATION_JSON_VALUE, method = RequestMethod.GET)
public String test(Model model) throws IOException {
ResponseEntity<coins[]> test = getRequest();
for (coins i : test.getBody()) {
model.addAttribute("coins", i);
}
return "Tables";
}
public ResponseEntity<coins[]> getRequest() throws IOException {
RestTemplate restTemplate = new RestTemplate();
String apiUrl = "https://api.coingecko.com/api/v3/coins/list";
HttpHeaders headers = new HttpHeaders();
headers.setAccept(Arrays.asList(new MediaType[]{MediaType.APPLICATION_JSON}));
headers.setContentType(MediaType.APPLICATION_JSON);
HttpEntity<String> entity = new HttpEntity<String>(headers);
ResponseEntity<coins[]> response = restTemplate.exchange(apiUrl, HttpMethod.GET, entity, coins[].class);
if (response.getStatusCode() == HttpStatus.OK) {
return response;
} else {
System.out.println("Error");
}
return response;
}型号:
@JsonProperty("id")
public String id;
@JsonProperty("symbol")
public String symbol;
@JsonProperty("name")
public String name;查看:
<tr th:each="coins : ${coins}">
<td th:text="${coins.id}"></td>
<td th:text="${coins.symbol}"></td>
<td th:text="${coins.name}"></td>
<td class="text-right">
<a href="javascript:void(0)" class="btn btn-link btn-info btn-icon btn-sm like"><i class="tim-icons icon-heart-2"></i></a>
<a href="javascript:void(0)" class="btn btn-link btn-danger btn-icon btn-sm remove"><i class="tim-icons icon-simple-remove"></i></a>
</td>
</tr>有什么建议吗?提前感谢您的帮助!
发布于 2020-01-25 01:40:23
事实证明,我不需要在控制器中运行for each循环。我删除了循环,并使用addAttribute方法将test.getBody()插入到模型中,它工作得很好。
https://stackoverflow.com/questions/59901129
复制相似问题