这是我的JSON:
[
{
"board_id":1,
"board_name":"CBSE",
"country_id":1,
"state_id":1,
"created_date":"2019-02-02T00:00:00+05:30",
"created_id":1,
"modified_date":"2019-02-02T00:00:00+05:30",
"modified_Id":1,
"states":{
"state_id":1,
"state_name":"Karnataka",
"country_id":1,
"created_id":1,
"created_date":"2019-06-06T00:00:00+05:30",
"modified_id":1,
"modified_date":"2019-06-06T00:00:00+05:30",
"countrys":{
"country_id":1,
"country_name":"India",
"created_id":1,
"created_date":"2019-06-06T00:00:00+05:30",
"modified_id":1,
"modified_date":"2019-06-06T00:00:00+05:30"
}
}
},
{
"board_id":2,
"board_name":"ICSE",
"country_id":1,
"state_id":1,
"created_date":"2019-02-02T00:00:00+05:30",
"created_id":1,
"modified_date":"2019-02-02T00:00:00+05:30",
"modified_Id":1,
"states":{
"state_id":2,
"state_name":"Maharashtra",
"country_id":1,
"created_id":1,
"created_date":"2019-06-06T00:00:00+05:30",
"modified_id":1,
"modified_date":"2019-06-06T00:00:00+05:30",
"countrys":{
"country_id":2,
"country_name":"Australia",
"created_id":1,
"created_date":"2019-06-06T00:00:00+05:30",
"modified_id":1,
"modified_date":"2019-06-06T00:00:00+05:30"
}
}
},
{
"board_id":3,
"board_name":"Karnataka State Board",
"country_id":1,
"state_id":1,
"created_date":"2019-02-02T00:00:00+05:30",
"created_id":1,
"modified_date":"2019-02-02T00:00:00+05:30",
"modified_Id":1,
"states":{
"state_id":3,
"state_name":"Telanghana",
"country_id":1,
"created_id":1,
"created_date":"2019-06-06T00:00:00+05:30",
"modified_id":1,
"modified_date":"2019-06-06T00:00:00+05:30"
}
}
]
angularjs代码:
<tr data-ng-repeat="board in boardlist" data-ng-value="{{board.board_id}}">
<td style="width: 10px">{{board.board_id}}</td>
<td>{{board.board_name}}</td>
<td data-ng-value="{{board.states.countrys.country_id}}">{{board.states.countrys.country_name}}</td>
<td data-ng-value="{{board.states.state_id}}">{{board.states.state_name}}</td>
<td style="width: 10px; text-align: center;"><img
src="images/edit.png" data-ng-click="submit_popupEditBoard(board)" /></td>
<td style="width: 10px; text-align: center;"><img
src="images/deletei.png"
data-ng-click="deleteBoard(board)"></td>
</tr>