首页 > 代码库 > thinkphp 对百度编辑器里的内容进行保存
thinkphp 对百度编辑器里的内容进行保存
模板代码
<!DOCTYPE HTML><html lang="en-US"><head> <meta charset="UTF-8"> <title>ueditor demo</title></head><body> <!-- 加载编辑器的容器 --> <script id="container" name="content" type="text/plain"> </script> <!-- 配置文件 --> <script type="text/javascript" src="http://localhost/myapp/public/ueditor.config.js"></script> <!-- 编辑器源码文件 --> <script type="text/javascript" src="http://localhost/myapp/public/ueditor.all.js"></script> <!-- 实例化编辑器 --> <form action="__URL__/insert" method="post" ><textarea name="content" id="myEditor"></textarea> <script type="text/javascript"> UE.getEditor(‘myEditor‘, { theme:"default", //皮肤 lang:"zh-cn", //语言 initialFrameWidth:800, //初始化编辑器宽度,默认800 initialFrameHeight:320});</script><input type="submit" value="提交"></form></body></html>
控制器代码
public function insert(){header("Content-Type:text/html; charset=utf-8"); $Dao = M("admin"); $Dao->create(); $Dao->id=‘1‘; $Dao->user=htmlspecialchars($_POST[‘content‘]); $Dao->add(); print_r($Dao); }
thinkphp整合ueditor(百度编辑器)方法
thinkphp 对百度编辑器里的内容进行保存
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。