码迷,mamicode.com
首页 > 其他好文 > 详细

07.LoT.UI 前后台通用框架分解系列之——轻巧的文本编辑器

时间:2016-07-04 13:45:48      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

LoT.UI汇总:http://www.cnblogs.com/dunitian/p/4822808.html#lotui

上次说的是强大的百度编辑器 http://www.cnblogs.com/dunitian/p/5551701.html 这次说下简洁版而又不失功能的WangEditor

先看看效果

技术分享

基本上常用功能都有了,下面说下完整的demo:

前端案例:

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>WangEditor</title>
    <meta charset="utf-8" />
    <link href="Script/WangEditor/css/wangEditor.min.css" rel="stylesheet" />
</head>
<body>
    <div id="edit" style="min-height:20em"></div>
    <br />
    <input id="btn1" type="button" value="获取HTML" />  
    <input id="btn2" type="button" value="获取Text" />
    <div id="msg"></div>
    <script src="//cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script>
    <script src="Script/jquery-1.8.3.min.js"></script>
    <script src="Script/WangEditor/js/wangEditor.min.js"></script>
    <script type="text/javascript">        
        var editor = new wangEditor(‘edit‘);       
        // 上传图片路径
        editor.config.uploadImgUrl = ‘/Home/Upload‘;
        // 设置统一参数名
        editor.config.uploadImgFileName = ‘file‘;       
        //编辑器创建
        editor.create();

        $(‘#btn1‘).click(function () {
            // 获取编辑器区域完整html代码
            var html = editor.$txt.html();
            $(‘#msg‘).html(html);
        });

        $(‘#btn2‘).click(function () {
            // 获取编辑器纯文本内容
            var text = editor.$txt.text();
            // 获取格式化后的纯文本
            //var formatText = editor.$txt.formatText();
            $(‘#msg‘).html(text);
        });
    </script>
</body>
</html>

后端代码:(自己写的,如果有什么问题欢迎联系我)

/// <summary>
        /// 图片上传
        /// </summary>
        /// <returns></returns>
        public ContentResult Upload(HttpPostedFileBase file)
        {
            if (file == null) { return Content("error|文件不能为空"); }
            string filterStr = ".gif,.jpg,.jpeg,.bmp,.png";
            //如果是上传文件,再添加其他格式即可
            string fileExt = Path.GetExtension(file.FileName).ToLower();
            if (!filterStr.Contains(fileExt)) { return Content("error|文件后缀不对"); }
            if (file.ContentLength > 10485760) { return Content("error|文件10M以内"); }

            //todo: md5判断一下文件是否已经上传过,如果已经上传直接返回 return Content(sqlPath#缩略图地址);

            string path = string.Format("{0}/{1}", "/lotFiles", DateTime.Now.ToString("yyyy-MM-dd"));
            string fileName = string.Format("{0}{1}", Guid.NewGuid().ToString("N"), fileExt);
            string sqlPath = string.Format("{0}/{1}", path, fileName);
            string dirPath = Request.MapPath(path);

            if (!Directory.Exists(dirPath)) { Directory.CreateDirectory(dirPath); }
            try
            {
                //todo:未来写缩略图的代码

                file.SaveAs(Path.Combine(dirPath, fileName));
                //todo: 未来写存数据库的Code
            }
            catch { return Content("error|文件保存失败"); }
            return Content(string.Format("{0}#{1}", sqlPath, "缩略图地址"));
        }

完整demo:https://github.com/dunitian/LoTCodeBase/tree/master/NetCode/3.常用技能/03.Editor/03.WangEditor

07.LoT.UI 前后台通用框架分解系列之——轻巧的文本编辑器

标签:

原文地址:http://www.cnblogs.com/dunitian/p/5640053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!