RIOT.JS - Loops
Podemos iterar por meio do array RIOT de primitivas ou de objetos e criar / atualizar os elementos html em movimento. Usando "cada" construção, podemos alcançá-lo.
Create array - Crie uma matriz de objeto.
this.cities = [
{ city : "Shanghai" , country:"China" , done: true },
{ city : "Seoul" , country:"South Korea" },
{ city : "Moscow" , country:"Russia" }
];
Add each attribute - Agora use o atributo "each".
<ul>
<li each = { cities } ></li>
</ul>
Iterate array of objects - Iterar a matriz usando as propriedades do objeto.
<input type = "checkbox" checked = { done }> { city } - { country }
Exemplo
A seguir está o exemplo completo.
custom7Tag.tag
<custom7Tag>
<style>
ul {
list-style-type: none;
}
</style>
<ul>
<li each = { cities } >
<input type = "checkbox" checked = { done }> { city } - { country }
</li>
</ul>
<script>
this.cities = [
{ city : "Shanghai" , country:"China" , done: true },
{ city : "Seoul" , country:"South Korea" },
{ city : "Moscow" , country:"Russia" }
];
</script>
</custom7Tag>
custom7.htm
<html>
<head>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/riot/3.13.2/riot+compiler.min.js"></script>
</head>
<body>
<custom7Tag></custom6Tag>
<script src = "custom7Tag.tag" type = "riot/tag"></script>
<script>
riot.mount("custom7Tag");
</script>
</body>
</html>
Isso produzirá o seguinte resultado -