Корзину можно реализовать как форму которую можно отправить на сервер нажатием обыкновенного submit и затем обработать на сервере при помощи обычного php.
В качестве демонстрации, вот немного грязного, не аккуратного и непродуманного кода написанного по принципу лишь бы отвязаться )))
Будет время чуть позже, нарисую чо нибудь покрасивше.
А пока вот тебе то что набросал на скорую руку
Сейчас в примере конечно просто категория отображается, но ты сам виноват ведь название товара как такового у тебя нигде не указано. Попробуй наименование товара сам добавить, и следи чтобы id у тебя были уникальные и не повторялись.
<!doctype html>
<html ng-app>
<head>
<script src="http://code.angularjs.org/1.2.0-rc.2/angular.min.js"></script>
</head>
<body>
<div ng-controller="Controller">
<h2 >Магазинчег</h2>
<table cols="2" width="90%" border="0">
<tr><td><p>
<label>Цвет рубашки</label>
<select data-ng-model="currentGroup" data-ng-options="group.Name for group in groups"></select></p>
<p><label>Тип рубашки</label>
<select data-ng-model="currentItem" data-ng-options="item.Name for item in currentItems"></select></p>
<p><label>Запястье</label>
<select data-ng-model="currentZap" data-ng-options="zap.Name for zap in currentZaps"></select></p></td>
<td><img src="{{img}}"/></td><tr></table>
<button ng-click="add()"> Добавить в корзинку </button>
<h2> Корзинка красной шапочки. </h2>
<form action="zakaz.php" method="post">
<table>
<tr>
<td> Наименование </td>
<td> количество </td>
<td> цена </td>
<td> операции </td>
</tr>
<tr ng-repeat="item in basket">
<td> <input name="id[]" TYPE="hidden" value='{{item.id}}'> {{item.Name}} </td>
<td> <input name="count[]" ng-model='item.count'> </td>
<td> </td>
<td> <button ng-click="remove(item.id)" >Убрать</button> </td>
</tr>
</table>
<input type="submit" value="Оформить заказ"> </input>
</form>
<script>
function Controller($scope) {
// надеюсь перевод это не мусорная корзина ))
$scope.basket = [];
var groups = [
{
"Id": "1",
"Name": "Белое платье сшитое эльфами ",
"Items": [
{
"Id": "1",
"Name": "Большое",
"Zaps": [
{
"Id": "2",
"Name": "3 Пуговки",
"img":"http://testmagaz.tw1.ru/wp-content/themes/magaz15/white/000.jpg"
}, {
"Id": "4",
"Name": "4 Пуговки",
"img":"http://testmagaz.tw1.ru/wp-content/themes/magaz15/white/111.jpg"
}
]
}, {
"Id": "6",
"Name": "Маленькое",
"Zaps": [
{
"Id": "7",
"Name": "4 Пуговки",
"img":"http://testmagaz.tw1.ru/wp-content/themes/magaz15/white/000.jpg"
}, {
"Id": "8",
"Name": "Молния",
"img":"http://testmagaz.tw1.ru/wp-content/themes/magaz15/white/111.jpg"
}
]
}, {
"Id": "9",
"Name": "Среднее",
"Zaps": [
{
"Id": "10",
"Name": "Шнурки",
"img":"http://testmagaz.tw1.ru/wp-content/themes/magaz15/white/000.jpg"
}, {
"Id": "11",
"Name": "Липучки",
"img":"http://testmagaz.tw1.ru/wp-content/themes/magaz15/white/111.jpg"
}
]
}, {
"Id": "12",
"Name": "XXL Для жиртресток",
"Zaps": [
{
"Id": "13",
"Name": "Магически срастается",
"img":"http://testmagaz.tw1.ru/wp-content/themes/magaz15/white/000.jpg"
}, {
"Id": "14",
"Name": "снимается по заклятью",
"img":"http://testmagaz.tw1.ru/wp-content/themes/magaz15/white/111.jpg"
}
]
}
]
}, {
"Id": "2",
"Name": "Куртка из кожи с жопы дракона",
"Items": [
{
"Id": "15",
"Name": "Для детей",
"img":"http://javascript.ru/forum/image.php?u=11594&dateline=1352658958"
}, {
"Id": "16",
"Name": "Для карликов",
"img":"http://javascript.ru/forum/image.php?u=14174&dateline=1380803229"
}, {
"Id": "17",
"Name": "Для гномов",
"img":"http://javascript.ru/forum/image.php?u=2666&dateline=1353162565"
}
]
}];
$scope.groups = groups; // Все товары
$scope.currentGroup = groups[0]; // Выбранные товар
//Следим за изменением товара
$scope.$watch('currentGroup', function () {
$scope.currentItems = $scope.currentGroup.Items;
$scope.currentItem = $scope.currentGroup.Items[0];
});
//Следим за изменением размера
$scope.$watch('currentItem', function () {
$scope.img = $scope.currentItem.img;
$scope.currentZaps = $scope.currentItem.Zaps;
$scope.currentZap = $scope.currentItem.Zaps[0];
}),
$scope.$watch('currentZap', function () {
$scope.img = $scope.currentZap.img;
$scope.currentZap = $scope.currentZap;
})
//Добавление товара в корзину
$scope.add=function(){
var newItem=true;
for(var i=0,l=$scope.basket.length;i<l;i++){
if($scope.basket[i].id==$scope.currentZap.Id) {
$scope.basket[i].count++;
newItem=false;
break;
}
}
if( newItem ){
$scope.basket.push( {
Name:$scope.currentZap.Name,
count:1,
id:$scope.currentZap.Id
});
}
};
//удаление товара из корзины
$scope.remove=function(id){
for(var i=0,l=$scope.basket.length;i<l;i++){
if($scope.basket[i].id==id) {
$scope.basket.splice(i, 1);;
break;
}
}
}
}
</script>
</div>
</body>
</html>
К слову меня очень забавляет вопрос как и где ты будешь формировать древовидную структуру данных с товарами которая предложена тобой для скрипта