LoginSignup
4
4

More than 5 years have passed since last update.

テンプレートエンジンECTのfor文メモ

Last updated at Posted at 2015-01-21

CoffeeScriptライクな書き方で爆速という噂のテンプレートエンジンエンジンです。

for文の書き方を毎回忘れるのでメモしておきます。

オブジェクトをforで取得するときはこっち(ejsやectテンプレートでのfor文メモ)

for文

<% for i in [a..z] : %>
  <!--ここがa〜zまでループされる-->
<% end %>

ノーマルな使い方

index.ect
<% for i in [1..5] : %>
  <div class="box"></div>
<% end %>

↓コンパイル↓

index.html
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>
  <div class="box"></div>

インデックス取得

index.ect
<% for i in [3..5] : %>
  <div class="box<%- i %>"></div>
<% end %>

↓コンパイル↓

index.html
  <div class="box3"></div>
  <div class="box4"></div>
  <div class="box5"></div>
4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4