我試圖撥打hotel_name使用ng-repeat
。我該怎麼做。如何在此JSON數據上使用ng-repeat
這是代碼。但沒有任何顯示。
<div ng-repeat="x in hotels">
<p ng-repeat="y in x.data">{{y.hotel_name}}</p>
</div>
這是數據格式。
{
status: 200,
message: "Packages Found",
data: [
{
hotel_id: "40",
company_id: "2",
user_id: "17",
hotel_name: "Zen International",
hotel_description: "Good Hotel"
}
]
}
由於dataListwith視圖這個工作 – DragonBorn