Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
几个小时以来,我一直试图在网站 uncooledblog.com 上进行造型工作。我尝试过使用这个TinyMCE gem、CKeditor以及其他一些 gem。我就是想不通这些东西。我想要的只是让用户能够格式化他们的帖子,或者至少能够识别回车。没什么复杂的。
有任何想法吗?
我的问题的答案很简单!!
要对文本进行简单的格式化,比如在 text_area 中显示回车,只需在要显示格式的视图中添加 simple_format!
例如:
改变
<%= @article.body %>
到
<%= simple_format @article.body %>
将导致文本以简单的格式显示!