1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Rails】[チャネル名]_channel.rbについて

Posted at

記事概要

Ruby on Railsの設定ファイルについて、まとめる

前提

  • Ruby on Railsでアプリケーションを作成している

基本情報

ファイルパス

app/channels/[チャネル名]_channel.rb

メソッド

stream_fromメソッド

サーバーとクライアントを関連付けるメソッド

# comment_channelを通して情報のやり取りを行うように定義
stream_from "comment_channel" #追加
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?