一行代码保存fckeditor编辑器提交的内容到文件(接上一博)

发布时间:2015-12-01 10:24:50 

接上一博,在轻开平台中,只需要一行代码就能把fckeditor编辑器提交的内容保存到文件

<file value="@{pPage:content}">@{sys:curPath}editor_fck_new_content.htm</file>
  • 1

<file bag=pPage key=content>@{sys:curPath}editor_fck_new_content.htm</file>
  • 1

解释一下: 
file:文件功能标签 
value=”@{pPage:content}”:要保存的内容(上一页提交过来的content字段值) 
bag=pPage:要保存的内容来自哪个书包 
key=content:要保存的内容的字段名 
@{sys:curPath}:当前文件所在目录 
editor_fck_new_content.htm:保存内容的文件名

完整代码

<chtml> <file value="@{pPage:content}">@{sys:curPath}editor_fck_new_content.htm</file> <to>@{sys:path}@{sys:curPath}editor_fck_new_content.htm</to> </chtml>
  • 1
  • 2
  • 3
  • 4

(例子文件:_samples/editor/editor_fck_save.chtml)在轻开平台的_samples/editor目录下

相关文章

2015-10-11 19:18:34

file标签之把书包中的内容保存到文件

把内容放进书包 [html] view plaincopy b ...

更多
2015-10-15 09:40:47

file标签之act=read(只需一行代码读出文件内容)

功能: 读文件的内容用法: file act=read[ ...

更多
2015-10-29 11:48:10

操作引入xml文件的书包(定位到指定节点)

定位到指定节点:e0.1 [html] view plaincopy ...

更多
2015-10-31 10:47:59

操作引入xml文件的书包(添加子节点和保存文件)

添加子节点和保存文件:添加子节点 [html] view plainco ...

更多