質問編集履歴

1

補足

2017/06/28 07:39

投稿

AMEAME
AMEAME

スコア10

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,22 @@
1
1
  Railsのcoffeescriptでrailsの変数を使う方法がわかりません。
2
2
 
3
3
  バージョンは5.0.3です。
4
+
5
+
6
+
7
+ ```ruby
8
+
9
+ class UserController < ApplicationController
10
+
11
+ def index
12
+
13
+ @users = User.all
14
+
15
+ end
16
+
17
+ end
18
+
19
+ ```
4
20
 
5
21
 
6
22