Чтобы построить ответ RRK и комментарии Ageax:
Вот как легко создать массив (с вложенной структурой) в скрипте ColdFusion.
Примечания:
"//" = комментарий
"[]" = неявный массив
"{}" = неявная структура
<cfscript>
// Build the array with structs.
carrinho = [
{
nome : "Camisa da Seleção Brasileira" ,
valor : 189 ,
quantidade : 1
} ,
{
nome : "Chuteira CR7" ,
valor : 470 ,
quantidade : 2
} ,
{
nome : "hort do Messi" ,
valor : 180 ,
quantidade : 1
}
] ;
// Using the counter method to determine the number
counter=1 ;
for(item in carrinho) {
writeoutput(counter & ". " & item.nome & "<br>") ;
counter++;
}
// Using each() member function
carrinho.each(function(element, index) {
writeOutput(index & ". " & element.nome & "<br>");
});
</cfscript>
DEMO
Выходы:
- Camisa da Seleção Brasileira
- Chuteira CR7
- Хорт-ду-Месси