方法
实例公共方法
_dump(*) 链接
源代码:显示 | 在 GitHub 上
# File actiontext/lib/action_text/serialization.rb, line 32 def _dump(*) self.class.dump(self) end
dump(content) 链接
源代码:显示 | 在 GitHub 上
# File actiontext/lib/action_text/serialization.rb, line 12 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 8 def load(content) new(content) if content end