方法
实例公共方法
_dump(*) 链接
来源: 显示 | 在 GitHub 上
# File actiontext/lib/action_text/serialization.rb, line 34 def _dump(*) self.class.dump(self) end
dump(content) 链接
来源: 显示 | 在 GitHub 上
# File actiontext/lib/action_text/serialization.rb, line 14 def dump(content) case content when nil nil when self content.to_html when ActionText::RichText content.body.to_html else new(content).to_html end end
load(content) 链接
来源: 显示 | 在 GitHub 上
# File actiontext/lib/action_text/serialization.rb, line 10 def load(content) new(content) if content end