elFinder打开不同的文件夹

时间:2014-01-29 11:43:33

标签: javascript php jquery html elfinder

我正在开发一个小型webapp,我正在使用elFinder,因此用户可以浏览一些远程目录。

我遇到的主要问题是我可以打开远程文件夹的根目录,但目标是直接为每个文件夹提供专用链接。

现在我正在使用此代码:

$(document).ready(function() {
  var myCommands = elFinder.prototype._options.commands;
  var disabled = ['extract', 'archive','home','quicklook','rm','duplicate','rename','mkdir','mkfile','copy','cut','paste','edit','archive','search','resize'];
  $.each(disabled, function(i, cmd) {
    (idx = $.inArray(cmd, myCommands)) !== -1 && myCommands.splice(idx,1);
  });
  var elf = $('#elfinder').elfinder({
    url : 'elfinder/php/connector.php', // connector URL (REQUIRED)
    width: 1024,
    height: 768, 
    commands: myCommands, 
  }).elfinder('instance');
});

我的HTML是这样的:

<div id="modal_reuniaoproducao" class="modal container fade" tabindex="-1" style="display: none;">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
    <h4 class="modal-title">Responsive</h4>
  </div>
  <div class="modal-body">
    <div class="row">
      <div class="col-md-12 col-lg-12">
        <div id="elfinder"></div>
      </div>
    </div>
  </div>
  <div class="modal-footer">
    <button type="button" data-dismiss="modal" class="btn btn-default">Close</button>
    <button type="button" class="btn btn-primary">Save changes</button>
  </div>
</div>

是否可以使用相同的连接器更改我想在每个模态上打开的文件夹?

我该如何实现?

1 个答案:

答案 0 :(得分:1)

我建议您使用事件系统,如Bootstrap文档中所述。 例如,为每个模态注册show事件。

$('#modal_reuniaoproducao').on('show.bs.modal', function (e) {
    // do something, in this case open elfinder.
    var elf = $('#elfinder').elfinder({
                 url : 'elfinder/php/connector.php', // connector URL (REQUIRED)
                 width: 1024,
                 height: 768, 
                 commands: myCommands, 
               }).elfinder('instance');
});

您可以使用方法get将“control”发送到connector.php,例如connector.php&amp; folderState = 1。这只是一个例子。

不要忘记在关闭和清除elfinder实例上销毁干净的模态体,这样当你再次调用连接器时,你就会有一张“干净的纸”。

我希望它有所帮助。