From 9fc9bb717deda5a5857c7e676bb94a0bbc3b937c Mon Sep 17 00:00:00 2001 From: daiao <358551898@qq.com> Date: Wed, 25 Mar 2020 16:26:23 +0800 Subject: [PATCH] =?UTF-8?q?base64=E8=B0=83=E8=AF=95=E5=88=A0=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/helpers/application_helper.rb | 2 +- app/views/users/videos/_video.json.jbuilder | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index bc7c55df2..1039a648a 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -28,7 +28,7 @@ module ApplicationHelper end # MD5加密 - def edu_base64_encode(content) + def base64_encode(content) return nil if content.blank? Base64.encode64(content) end diff --git a/app/views/users/videos/_video.json.jbuilder b/app/views/users/videos/_video.json.jbuilder index 6d007b0af..ac030ce12 100644 --- a/app/views/users/videos/_video.json.jbuilder +++ b/app/views/users/videos/_video.json.jbuilder @@ -1,8 +1,6 @@ json.extract! video, :id, :title, :cover_url, :file_url, :play_url, :vv, :user_id, :transcoded -json.play_url edu_base64_encode(video.play_url) -json.file_url edu_base64_encode(video.file_url) -json.real_play_url video.play_url -json.real_file_url video.file_url +json.play_url base64_encode(video.play_url) +json.file_url base64_encode(video.file_url) json.play_duration video.video_play_duration json.published_at video.display_published_at json.created_at video.display_created_at