主题: 关于kindeditor 浏览服务器的问题 |
作者: Acess, 发布日期: 2012-08-03 23:00:32, 浏览数: 3087 |
我在开发网站的过程中 发现kindeditor浏览服务器的功能只能浏览 /attached/image 它的根目录的image文件夹下的图片 后来发现是
<script> var editor; KindEditor.ready(function(K) { var editor = K.editor({ fileManagerJson : 'selectindexphoto.php' }); K('#photoselect').click(function() { editor.loadPlugin('filemanager', function() { editor.plugin.filemanagerDialog({ viewType : 'VIEW', dirName : 'photo', clickFn : function(url, title) { document.getElementsByName("photo")[0].src=url; document.getElementsByName("photoval")[0].value=url; editor.hideDialog(); } }); }); }); }); </script> 是dirName参数 与PHP代码中的 require_once 'JSON.php'; $php_path = dirname(__FILE__) . '/'; $php_url = dirname($_SERVER['PHP_SELF']) . '/'; //根目录路径,可以指定绝对路径,比如 /var/www/attached/ $root_path = $php_path . '../attached/'; //根目录URL,可以指定绝对路径,比如 http://www.yoursite.com/attached/ $root_url = $php_url . '../attached/'; //图片扩展名 $ext_arr = array('gif', 'jpg', 'jpeg', 'png', 'bmp'); //目录名 $root_path 与$root_url 的问题
现在请教大神们 我想用 浏览服务器的功能浏览 我的网站根目录中的 /photo/ 目录里面所以照片 请问JS代码与PHP代码怎么写 (自己改了好久都没用 只能请教大家了!) 谢谢! |