codice:
var app = angular.module('plunker', []);
app.controller('MainCtrl', function($scope) {
$scope.menus = [{
ToC: 'American',
ToM: 'McMenu',
courses: []
}, {
ToC: 'American',
ToM: 'Easy',
courses: []
}, {
ToC: 'Italian',
ToM: 'Margherita',
courses: ['Pizza', 'Salad', 'Softdrink']
}, {
ToC: 'Chinese',
ToM: 'McNoodle',
courses: []
}, ];
$scope.courses = [{
"Type": "Pasta",
"Ppu": 4,
"Characteristics": [{
"Label": "Variant",
"Options": [{
"OptItem": "Lasagne",
"addppu": 2
}, {
"OptItem": "Tortellini",
"addppu": 1.5
}, {
"OptItem": "Gnocchi",
"addppu": 1
}, {
"OptItem": "Spaghetti",
"addppu": 0
}, {
"OptItem": "Cannelloni",
"addppu": 2
}],
}, {
"Label": "Size",
"Options": [{
"OptItem": "Normal",
"addppu": 0
}, {
"OptItem": "King size",
"addppu": 1
}],
}]
}, {
"Type": "Pizza",
"Ppu": 4,
"Characteristics": [{
"Label": "Variant",
"Options": [{
"OptItem": "Margherita",
"addppu": 0
}, {
"OptItem": "Napoli",
"addppu": 1
}, {
"OptItem": "Funghi",
"addppu": 1
}, {
"OptItem": "Prosciutto",
"addppu": 0.5
}, {
"OptItem": "Hawaii",
"addppu": 2
}],
}, {
"Label": "Size",
"Options": [{
"OptItem": "Normal",
"addppu": 0
}, {
"OptItem": "King size",
"addppu": 1
}],
}]
}, {
"Type": "Salad",
"Ppu": 2.5,
"Characteristics": [{
"Label": "Dressing",
"Options": [{
"OptItem": "None",
"addppu": 0
}, {
"OptItem": "Italian",
"addppu": 1
}, {
"OptItem": "French",
"addppu": 1
}],
}, {
"Label": "Size",
"Options": [{
"OptItem": "Small",
"addppu": 0
}, {
"OptItem": "Medium",
"addppu": 1
}, {
"OptItem": "Large",
"addppu": 1.5
}],
}]
}, {
"Type": "Softdrink",
"Ppu": 3,
"Characteristics": [{
"Label": "Type",
"Options": [{
"OptItem": "Coca-Cola",
"addppu": 0
}, {
"OptItem": "Coca-Cola Light",
"addppu": 0.5
}, {
"OptItem": "Fanta",
"addppu": 0
}, {
"OptItem": "Sprite",
"addppu": 0
}],
}]
}
];
});
Anteprima: