Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HTML タグ内の Rythm で While ループを記述しようとしましたが、できません。
このコードのようなもの:
@{ int i = 0; while( i< 5){ i++; } <h2>hello</h2> @{ } }
現時点では、Rythmwhileはループをサポートしていません。forあなたのケースでは代わりにループを使用してください:
while
for
@for(int i = 0; i < 5; ++i) { <h2>hello</h2> }