以下は、私が取得していますJSONであると私は変数に使用していることを格納しています私は、角使ってJSON配列を解析することができません、
JSをNGをリピート: - JSPで
$scope.shopData = resp.data.shopVal;
ng-repeatタグで動作していないページ。
JSON: -
{
"subCategoryNames": null,
"subCategorymMap": {},
"shopVal": [
{
"shopAdrs": "tex10",
"shopSrvc": "tex12",
"shopName": "tex13",
"shopWbst": "tex14"
},
{
"shopAdrs": "tex15",
"shopSrvc": "tex16",
"shopName": "tex16",
"shopWbst": "tex17"
},
{
"shopAdrs": "tex18",
"shopSrvc": "tex19",
"shopName": "tex20",
"shopWbst": "tex21"
}
],
"ownerVal": {
"ownrNumbr": "1111111111",
"ownrFName": "ABCD",
"ownrLName": "EFGH",
"ownrEmail": "[email protected]"
}
}
JSP: - $ scope.shopDataが正しくJSONごとに値を取得していることを
<div data-ng-repeat="shop in shopDta">
<a>
{{shopDta.shopName}}<br>
Address: {{shopDta.shopAdrs}}<br>
Services: {{shopDta.shopSrvc}}<br>
Website: {{shopDta.shopWbst}}<br><br>
</a>
</div>
注意。助けてください
、唯一のハードコードされた文字列が印刷されてきています。助けてください。 –
ng-repeatでオブジェクトを反復処理することはできません。配列に移動してから反復処理を行います。 – Siddharth