如何在角度js中使用foreach語句?我目前的數據是以json格式打印出來的。我想把它打印出來。如何在html上使用帶有angularjs的foreach
的Html
<p>{{controller.greeting.custinfo}}</p>
//attempt
<p ng-repeat= >{{controller.greeting.custinfo}}</p>
在UI輸出
{"id":null,"biling_address":"null","billing_state":"FL","ip_Addresses":["123:111:2101","","NULL"],name":"jimmmy"}
java的輸出
System.out.println(custinfo);
[email protected]
我如何使用foreach統計以新行顯示數據?而不是JSON格式。
我知道如何與thymeleaf做到這一點,下面的例子
<table th:each="custinfo : ${custinfo}">
<tr>
<td ng-show="id" class="padded">id:</td>
<td ng-show="id" th:text="${custinfo.id}" class="padded"></td>
</tr>
//continue down
對我來說,這將是鍵/值? –
第一行:'key =「id」'&'value =「null」'。 – lin
好的,關鍵會工作,但不值。每次更改值。所以我不能只設置值 –