我正在开发一个我正在使用Elfinder的小型WebApp,以便用户可以浏览一些远程DIRS。
我遇到的主要问题是我可以打开远程文件夹的根,但是目的是将专用链接直接链接到每个文件夹。
现在我正在使用此代码:
$(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>
使用相同的连接器可以更改我要在每种模式上打开的文件夹?
我该如何完成?
我建议您使用Bootstrap文档中所述的事件系统。对于典范,请注册每种模式的表演活动。
$('#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');
});
您可以使用方法将"控制"发送到connector.php,例如connector.php&amp; folderstate = 1。它只是一个例子。
不要忘记在封闭和清除饮料的实例上销毁干净的模态实例,因此当您再次呼叫连接器时,您有一个"干净的床单"。
我希望它有帮助。