`
resembling
  • 浏览: 32762 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Integrating FCKEditor(FCK与ROR结合应用)

    博客分类:
  • ruby
阅读更多
FCKEditor是一个带有丰富功能的文本编辑器(text box),它和其他编辑器不同的在于它工作在Browser。它是一个开源项目,编写语言是javascript
下面介绍它是如何RoR一同工作的,可以在 http://www.fckeditor.net 下载到它的最新版本,我们先把下载文件中的:
/editor/
fckconfig.js
fckeditor.js
fckstyles.xml
fcktemplates.xml
拷贝到RoR architecture的javascript文件夹下
(public文件夹下建一个fckeditor文件夹,把上面所有文件放到fckeditor内,同时把除/editor/文件夹外的其它四个文件放到public/javascripts下面)
在需要FCKEditor的文件夹下面加入代码:
<%= javascript_include_tag "fckeditor" %>
<script type="text/javascript">
window.onload = function()
{
var oFCKeditor = new FCKeditor( 'product_intro' ) ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
用户载入有关js文件,并且触发onload事件,这个事件会重置textarea
因此我们要加上:
<form action="/user/article" method="POST">
<TR bgColor=#ffffff><TD height=16 colspan="3">
<textarea id="MyTextarea" name="MyTextarea">This is <b>the</b> initial value.</textarea>
<input type="submit" value="提交文章">
</TD></TR></form>
运行结果就是:
使用起来上面的东西还算是有点麻烦,因为我们要先触发onload事件,然后写一个textarea,我们来增加一个helper method来提高我们的效率
在ApplicationHelper Module中加入method:
def fckeditor_text_field(object, method, options = {})
    text_area(object, method, options ) +
    javascript_tag( "var oFCKeditor = new FCKeditor('" + object + "_" + method + "');oFCKeditor.ReplaceTextarea()" )
end
这样我们就有了一个很好用的method,fckeditior_text_field,我们来使用它:
<%= javascript_include_tag "fckeditor" %>
<%= fckeditor_text_field "MyTextarea", "MyTextarea" %>
<%= submit_tag "提交文章" %>
就3句话,我们达到了同样的效果,很方便,这里我们设定的fckeditor_text_field 这个helper method,前两个arguments表示 text_area helper method 中的前两个arguments,用于表示<textarea>标签中的name属性的值,比如<%=fckeditor_text_field “a”,”b” %> 结果产生name=a[b]样式的<textarea>标签。这里说到了fckeditor_text_field helper method可以产生个textarea,因此我们就可以用处理textarea的方式来处理FCKEditor,比如:
def save
      page = Page.new(params[:a])
      page.save
end
这里保存的将是html格式的文本,在FCKEditor,我们选“源代码”按钮,结果就得到了我们保存的内容,也就是html格式的文本。



文章引用自: http://www.i170.com/user/killercat/Article_36350
分享到:
评论

相关推荐

    Integrating Extending BIRT (2ndEdition)

    - **定义与背景**:BIRT(Business Intelligence and Reporting Tools)是一款开源报表系统,用于构建和集成到应用中的报表。它由Eclipse基金会维护和支持,被广泛应用于企业级应用开发中。 - **特点**:BIRT 支持...

    Cisco Press - Integrating Voice and Data Networks

    总体来看,《Integrating Voice and Data Networks》是一本深入探讨如何将传统语音网络与现代数据网络进行集成的专业书籍。它不仅适用于网络管理人员和开发人员,对于希望通过Cisco产品实现网络集成的专业人士来说,...

    Integrating Serverless Architecture.pdf

    您将开始使用SignalR服务,并将其与Azure函数和Web应用程序集成。最后,您将在Azure函数上进行应用服务身份验证,并了解如何配置持续集成和交付到Azure功能。在阅读了这本书之后,您将能够理解使用Azure函数设计、...

    integrating Spring and DWR

    综上所述,"integrating Spring and DWR"是一个涉及将DWR的实时交互能力与Spring的全面企业级服务相结合的过程。这一集成使得开发者可以构建出既有强大后端支持,又能提供流畅用户体验的现代Web应用。通过深入理解和...

    Semantic Scene Completion via Integrating Instances and Scene

    本文提出了一种名为场景-实例-场景网络(SISNet)的新框架,该框架结合了实例级和场景级的语义信息,以解决这一难题。 传统的语义场景完成方法如SSCNet,虽然能够提供基本的3D场景重构,但在处理精细形状细节和易...

    Apress - Integrating Serverless Architecture.2019.epub

    Apress - Integrating Serverless Architecture.2019.epub

    Integrating Data & Services

    在IT领域,集成数据与服务(Integrating Data & Services)是实现企业级系统互联互通的关键技术之一。这一概念强调了如何有效地将不同来源、不同格式的数据整合在一起,并通过服务的形式提供给应用程序或用户,以...

    Integrating.and.Extending.BIRT (Second Edition)

    Eclipse BIRT主站上推荐的两本权威书籍有两本:1.BIRT: A Field Guide to Reporting 2.Integrating and Extending BIRT 第一本是BIRT报表开发的基本介绍,第二本将如何集成与扩展BIRT应用。这是第二本书的2008第二版

    Integrating Python with Leading Computer Forensics Platforms epub

    Integrating Python with Leading Computer Forensics Platforms 英文epub 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或csdn删除

    GEE应用遥感培训Integrating climate and environmental data into .docx

    NASA 应用遥感培训 (ARSET) NASA ARSET为灾害监测和其他遥感主题提供网络研讨会,其中许多使用地球引擎。 华盛顿大学 此页面具有出色的集科开发的入门教程的 凯瑟琳·库恩和吉利安Deines为电子科学研究所的...

    Integrating Voice and Data Networks

    Integrating Voice and Data Networks (Keagy, ISBN# 1578701961)

    英文原版-Hybrid Animation Integrating 2D and 3D Assets 2nd Edition

    Expand your imagination by letting go of the limitations of traditional animation mediums, software packages, or workflows and integrating 2D and 3D assets. With the updated and expanded second ...

    Integrating JMeter into Ant

    为了提高效率并实现自动化,可以将 JMeter 与构建工具如 Apache Ant 结合使用。 本文将详细介绍如何将 JMeter 集成到 Ant 构建脚本中,以便在每次构建过程中自动执行负载测试。通过这种方式,可以在不影响日常工作...

    Integrating Learning and Planning

    David Silver RL Lecture 8 Integrating Learning and Planning

    Integrating Context and Occlusion for Car Detection by Hierarchical And-Or Model

    《基于层次And-Or模型的上下文与遮挡在车辆检测中的融合应用》 车辆检测是计算机视觉领域的重要研究方向,广泛应用于智能交通、自动驾驶、安全监控等多个领域。本研究聚焦于如何通过层次And-Or模型来提升车辆检测的...

Global site tag (gtag.js) - Google Analytics