質問編集履歴
6
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,6 +10,14 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
+
※11/29追記
|
14
|
+
|
15
|
+
stream_from "room_channel_#{params['recruit']}"
|
16
|
+
|
17
|
+
ここでparams['recruit']が取得できておらず、ログにてRecruit(参考記事のRoom)が無いとのバリデーションエラーが発生していたので確認中です。
|
18
|
+
|
19
|
+
|
20
|
+
|
13
21
|
|
14
22
|
|
15
23
|
```
|
5
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
[rails6] ActionCable
|
1
|
+
[rails6] ActionCable データの受け渡しが上手く行かない。
|
test
CHANGED
File without changes
|
4
test
CHANGED
File without changes
|
test
CHANGED
@@ -112,7 +112,7 @@
|
|
112
112
|
|
113
113
|
|
114
114
|
|
115
|
-
def speak(data) //
|
115
|
+
def speak(data) // messageを受け取り、room_channelのreceivedにブロードキャストする
|
116
116
|
|
117
117
|
Message.create! content: data['message'], user_id: current_user.id, recruit_id: params['recruit']
|
118
118
|
|
3
test
CHANGED
File without changes
|
test
CHANGED
@@ -112,7 +112,7 @@
|
|
112
112
|
|
113
113
|
|
114
114
|
|
115
|
-
def speak(data)
|
115
|
+
def speak(data) // jsで実行されたspeakのmessageを受け取り、room_channelのreceivedにブロードキャストする
|
116
116
|
|
117
117
|
Message.create! content: data['message'], user_id: current_user.id, recruit_id: params['recruit']
|
118
118
|
|
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -112,7 +112,7 @@
|
|
112
112
|
|
113
113
|
|
114
114
|
|
115
|
-
def speak(data) # jsで実行されたspeakのmessageを受け取り、room_channelのreceivedにブロードキャストする
|
115
|
+
def speak(data) # jsで実行されたspeakのmessageを受け取り、room_channelのreceivedにブロードキャストする
|
116
116
|
|
117
117
|
Message.create! content: data['message'], user_id: current_user.id, recruit_id: params['recruit']
|
118
118
|
|
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -192,7 +192,7 @@
|
|
192
192
|
|
193
193
|
```
|
194
194
|
|
195
|
-
rooms.html.erb
|
195
|
+
rooms/new.html.erb
|
196
196
|
|
197
197
|
|
198
198
|
|