Created
May 5, 2010 06:02
-
-
Save maiha/390433 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| object Hello extends Controller { | |
| def index { | |
| val user_count = User.count | |
| render(user_count) | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p> | |
| 現在の登録ユーザ数: ${ user_count } | |
| </p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
render("user_count" -> User.count)
的な方法が知りたい。変数名をリゾルブしてるのは逆に凄いけど。