试卷KE迁移

dev_hjm
daiao 6 years ago
parent e44fc0aa13
commit 9fe045d5dd

@ -1,12 +1,12 @@
class ModifyKeContentsForMarkdown < ActiveRecord::Migration[5.2] class ModifyKeContentsForMarkdown < ActiveRecord::Migration[5.2]
include ActionView::Helpers::SanitizeHelper include ActionView::Helpers::SanitizeHelper
def change def change
# def ke_transform_to_md content def ke_transform_to_md content
# return content if content.blank? return content if content.blank?
# s_contents = sanitize(content, tags: %w(img a span table td tr tbody pre), attributes: %w(src href target style)) s_contents = sanitize(content, tags: %w(img a span table td tr tbody pre), attributes: %w(src href target style))
# s_contents.gsub(">\n<", "><").gsub(/^\n/, "").gsub(" ", "&nbsp;").gsub(/(\n)+/, "<br />") s_contents.gsub(">\n<", "><").gsub(/^\n/, "").gsub(" ", "&nbsp;").gsub(/(\n)+/, "<br />")
# .gsub("\t", "&nbsp;&nbsp;&nbsp;&nbsp;").gsub("\n", "").gsub(" ", "&nbsp;").gsub(/(<br\s?\/?>)+/, "<br />") .gsub("\t", "&nbsp;&nbsp;&nbsp;&nbsp;").gsub("\n", "").gsub(" ", "&nbsp;").gsub(/(<br\s?\/?>)+/, "<br />")
# end end
# #
# # 课程讨论区 # # 课程讨论区
# MessageDetail.find_each do |m| # MessageDetail.find_each do |m|
@ -14,11 +14,11 @@ class ModifyKeContentsForMarkdown < ActiveRecord::Migration[5.2]
# m.update_column(:content, content) # m.update_column(:content, content)
# end # end
# 试卷的标
# ExerciseQuestion.find_each do |eq| ExerciseQuestion.find_each do |eq|
# question_title = ke_transform_to_md eq.question_title question_title = ke_transform_to_md eq.question_title
# eq.update_column(:question_title, question_title) eq.update_column(:question_title, question_title)
# end end
# # 试卷的答案 # # 试卷的答案
# ExerciseStandardAnswer.find_each do |esa| # ExerciseStandardAnswer.find_each do |esa|
Loading…
Cancel
Save