tp5富文本编辑器的插件使用

链接:https://pan.baidu.com/s/1O6fVYAIQEyri8Z5VGRuPaQ
提取码:6666
首先下载插件的文件 可以使用官方下载 不方便的我上面提供的下载链接

 <form action="{:url('Index/und')}" method="post" enctype="multipart/form-data">
                    <!-- 加载编辑器的容器 -->
                    <textarea id="container" name="content" type="text/plain">
                      {$ud}
                    </textarea>
                    <input type="submit" value="提交">
        </form>
         <!-- 配置文件 -->
         <script type="text/javascript" src="/static/ueditor/ueditor.config.js"></script>
         <!-- 编辑器源码文件 -->
         <script type="text/javascript" src="/static/ueditor/ueditor.all.js"></script>
         <!-- 实例化编辑器 -->
         <script type="text/javascript">
             var editor = UE.getEditor('container');
         </script>

页面引入 富文本的核心文件放在public static 下tp5富文本编辑器的插件使用

 

 

public function und()
        {
            if(request()->isPost()){
                $a=$_POST;
                
                $data=["content"=>$a["content"]];
                Db::name('attr')->insert($data);
                
                //$b=str_replace('<','&lt',$a);
                //var_dump($b);
            }
            
     
     
        }

这是用来接收数据的信息 我这里插入了数据库 

 

上一篇:TP5学习基础二:目录结构、URL路由、数据操作


下一篇:tp5 邮件发送