最近在用kindeditor 编辑器,在上传本地图片的时候遇到了点问题,不能正确的上传。
现在把使用 kindeditor 上传本地图片的配置记录一下。
1、下载kindeditor。http://kindeditor.net/down.php
2、解压,将所有文件复制到项目里。我是放在content里面。
(您可以根据需求删除以下目录后上传到服务器,asp - ASP程序,asp.net - ASP.NET程序,php - PHP程序,jsp - JSP程序,examples - 演示文件)
3、将editor/asp.net/bin目录下的dll文件复制到项目bin目录下。
4、修改HTML页面
a>添加textarea输入框
<td>@Html.TextAreaFor(a => a.contents, new { id = "editor_id" })</td>b>在页面添加以下脚本
<!-- 或者<td><textarea id="editor_id" name="contents" >Model.contents</textarea> -->
<script charset="utf-8" src="~/content/editor/kindeditor.js"></script> <script charset="utf-8" src="~/content/editor/lang/zh_CN.js"></script> <script> KindEditor.ready(function (K) { window.editor = K.create('#editor_id', { width: '600px', height: '400px', items: ['source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'cut', 'copy', 'paste', '|', 'justifyleft', 'justifycenter', 'justifyright', '|', 'insertorderedlist', 'insertunorderedlist', 'clearhtml', 'quickformat', '|', 'anchor', 'link', 'unlink', '|', 'fullscreen', '/', 'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'lineheight', 'removeformat', '|', 'image', 'multiimage', 'flash', 'media', 'insertfile', '|', 'table', 'hr', 'emoticons', 'baidumap'], //uploadJson: '~/content/editor/asp.net/upload_json.ashx', //在网上需要配置这句,但是注释了才不报错...只需要下面的 fileManagerJson: '~/content/editor/asp.net/file_manager_json.ashx', }); }); </script>
如果你改变了 editor 的文件位置,要修改一下 upload_json.ashx 、 file_manager_json.ashx 的保存路径。我的是默认的。
找到plugins文件夹下的image文件夹,下面有个image.js文件,默认是php的,要修改为asp.net。
上传本地图片时,路径会显示C:\fakepath\***,显示fakepath是正常的,出于安全考虑,是无法获取真实路径的。
最后上效果图:
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。