1
我有以下陣列:獲取從JSON數組選擇離子複選框angularjs
$scope.profile.preferencias = [7,5,3,8,4];
編輯 我的類別陣列看起來像這樣:
[
{
"id": 2,
"descricao": "Entomologia",
"dataCriacao": "0001-01-01T00:00:00",
"isActive": true,
"isFixed": true
},
{
"id": 3,
"descricao": "Fisiologia",
"dataCriacao": "0001-01-01T00:00:00",
"isActive": true,
"isFixed": true
}
]
我離子複選框看起來像這樣:
<ion-checkbox ng-repeat="category in categories | toArray | orderBy:'descricao'" name="group" ng-model="profile.preferencias[category.id]">{{category.descricao}}</ion-checkbox>
選擇的輸出是:
{
"7": true,
"5": false,
"3": true
}
我怎麼能只發送數量的json,所以它會保存像上面的$範圍,並在頁面重新加載,複選框傷愈復出檢查?
謝謝!
能否請您分享您的$ scope.categories陣列 – Muhsin
嗨,添加類別排列,感謝您 –
需要一個數組[數組ID]選擇對象? – Muhsin