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.
私は次のことをしようとしています:
<div ng:repeat='row in _.range(0,{{rowCount}})'></div>
しかし、それは評価しません{{rowCount}}。評価するにはどうすればよいですか?
{{rowCount}}
ngRepeatは、渡した式をすでに評価しています。{{}}を使用する必要はありません。実際には使用しないでください。rowCountを参照するだけです。
<div ng:repeat='row in _.range(0,rowCount)'></div>
そしてそれはうまくいくはずです!