elFinder问题。尝试复制文件时,未定义不是函数错误

时间:2015-03-07 12:59:39

标签: javascript jquery html css elfinder

我正在尝试实施elFinder file manager

这就是我所做的。 包含的文件:

    $arr_css = array(
              "main.css",
              "jquery-ui.css",
              "elfinder.min.css",
               "theme.css"
              );
    $arr_js = array(
               "jquery.js",
               "main.js",
               "jquery-ui.js",
               "elfinder.min.js",
               "elfinder.ru.js"
               );

(main.js和main.css是用于创建<link rel='stylesheet'><script type='text/javascript'>的数组)

在我的主页面上有一个

<div id='fileStructure'>
    <div id="elfinder"> </div>
</div> 

我用来初始化elfinder:

$(document).ready(function() {
    var elf = $('#elfinder').elfinder({
        lang: 'ru',             // language (OPTIONAL)
        url : '/radio/elfinder-2.0-rc1/php/connector.php'  // connector URL (REQUIRED)
    }).elfinder('instance');            
});

enter image description here

这就是我现在所拥有的。它看起来很好,我可以创建目录,文件,可以上传它们。但是当我试图复制它时,它说:

Uncaught TypeError: undefined is not a functionelfinder.min.js:2841 elFinder.commands.copy.execelfinder.min.js:1746 (anonymous function)elfinder.min.js:1706 (anonymous function)jquery.js:3058 jQuery.event.dispatchjquery.js:2676 jQuery.event.add.elemData.handle.eventHandle

同样的错误在于其他行为,例如cut cut和其他。 当我查看脚本时,我发现错误与字符串

有关
return a.each(this.files(b), function (a, b) {
                if (!b.read || !b.phash) return !d.reject(["errCopy", b.name, "errPerm"])
            }), d.isRejected() ? d : d.resolve(c.clipboard(this.hashes(b))

我真的不明白为什么会这样,因为结构对我来说并不清楚:

d = this
b = a(b)

和a是elfinder主要功能的参数

(function (a) {

任何人都可以帮我解决问题吗?可能有人遇到类似的问题? 的更新

Uncaught TypeError: undefined is not a functionelfinder.min.js:2860 elFinder.commands.cut.execelfinder.min.js:1746 (anonymous function)elfinder.min.js:1706 (anonymous function)jquery.js:3058 jQuery.event.dispatchjquery.js:2676 jQuery.event.add.elemData.handle.eventHandle
Uncaught TypeError: undefined is not a functionelfinder.min.js:4249 elFinder.commands.rm.execelfinder.min.js:1746 (anonymous function)elfinder.min.js:1706 (anonymous function)jquery.js:3058 jQuery.event.dispatchjquery.js:2676 jQuery.event.add.elemData.handle.eventHandle

1 个答案:

答案 0 :(得分:1)

从你的网址(/radio/elfinder-2.0-rc1/php/connector.php)看来你正在使用Elfinder 2.0 RC1。

您应该知道Studio 42(开发elFinder的公司)自2012年以来没有为elFinder更新或开发任何代码。用户nao-pon最近负责开发和错误修复。

因此,您应下载Nightly build以使用最新更新的代码。这应该可以解决你的问题。