解決したいこと
Railsでyoutubeの動画を投稿して、その動画のBGMをユーザーに提供するアプリを作っています。
youtubeの動画の形だけ表示できましたが、再生ができません。
下記のQiitaをもとに、urlの下11桁のコードを取得して
参考Qiita
今回初めて質問しますが、よろしくお願いします。
試したこと
- urlのコピペ
動画サイトの上部のURLと、共有タブのURLからコピーしましたがいずれも表示できません。
- binding.pryを実行
変数paramsのハッシュは入っているため問題ないです。
該当のソースコード
詳細画面ではQiitaの記事を参考にしました。
show.html.haml
1.tweet_contents 2 .tweet_content 3 .tweet_content__body 4 = simple_format(@tweet.text) 5 .tweet_content__bottom 6 .tweet_content__bottom--name 7 = @tweet.nickname 8 .tweet_content__bottom--outputNew 9 = link_to "Output", "/tweets/#{@tweet.id}/outputs/new" 10 .output_content 11 %h4 アウトプット一覧 12 - @outputs.each do |output| 13 .output_content__body 14 %tr 15 %td 16 .output_content__body--youtube_container 17 %iframe{allow: "accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture", allowfullscreen: "", frameborder: "0", height: "200", src: "https://www.youtube.com/embed/#{@output.youtube_url}", width: "300"} 18 %td 19 .output_content__body--review 20 = output.review 21 %td 22 .output_content__body--name 23 = output.user.nickname
Outputsコントローラー
createアクションにはurlの下11桁を取得するよう設定しました。
class OutputsController < ApplicationController def new @output = Output.new end def create @output = Output.create(output_params) url = params[:output][:youtube_url] url = url.last(11) @output.youtube_url = url redirect_to "/tweets/#{@output.tweet.id}" end private def output_params params.require(:output).permit(:review, :youtube_url).merge(user_id: current_user.id, tweet_id: params[:tweet_id]) end end
tweetsコントローラー
class TweetsController < ApplicationController before_action :move_to_index, except: [:index, :show] def index @tweets = Tweet.includes(:user) end def new @tweet = Tweet.new end def create Tweet.create(tweet_params) end def show @tweet = Tweet.find(params[:id]) @output = Output.new @outputs = @tweet.outputs.includes(:user) end private def tweet_params params.require(:tweet).permit(:nickname, :text).merge(user_id: current_user.id) end def move_to_index redirect_to action: :index unless user_signed_in? end end
マイグレーションファイルではyoutube_urlカラムで、stringタイプです。
db/migrate/20200331065035_create_outputs.rb
1class CreateOutputs < ActiveRecord::Migration[5.2] 2 def change 3 create_table :outputs do |t| 4 t.text :review, null: false 5 t.string :youtube_url, null: false 6 t.integer :user_id, null: false, foreign_key: true 7 t.integer :tweet_id, null: false, foreign_key: true 8 t.timestamps 9 end 10 end 11end
検証ツールでは、url下11桁が完全に取得されていない模様。
gyazo
補足情報(FW/ツールのバージョンなど)
- 使用言語
haml,scss,ruby,ruby on rails
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。