Мы можем перебирать массив примитивов RIOT или Objects и создавать / обновлять html-элементы на ходу. Используя «каждую» конструкцию, мы можем достичь этого.
-
Создать массив — Создать массив объекта.
Создать массив — Создать массив объекта.
this.cities = [ { city : "Shanghai" , country:"China" , done: true }, { city : "Seoul" , country:"South Korea" }, { city : "Moscow" , country:"Russia" } ];
-
Добавьте каждый атрибут — теперь используйте атрибут «каждый».
Добавьте каждый атрибут — теперь используйте атрибут «каждый».
<ul> <li each = { cities } ></li> </ul>
-
Итерация массива объектов — Итерация массива с использованием свойств объекта.
Итерация массива объектов — Итерация массива с использованием свойств объекта.
<input type = "checkbox" checked = { done }> { city } - { country }
пример
Ниже приведен полный пример.
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>
Это даст следующий результат —