gpt4 book ai didi

jquery - 为什么 jQuery FileTree 在未设置时显示文件?

转载 作者:行者123 更新时间:2023-12-03 23:05:10 24 4
gpt4 key购买 nike

我正在使用jqueryfiletree plugin ,看起来已经建立并且相当顺利,但我有一些问题:

尽管选项设置如下:

$(function() {
$("#sourceFileTree").fileTree({
onlyFolders: true,
root: "C%3a%5cProjects%5cBMW%5cCode%5cFileTransfers.Web",
script: "/FileTree/Tree",
multiFolder: false,
multiSelect: false,
preventLinkAction: true
});
});
  1. onlyFolders 似乎被忽略,打开的任何文件夹也会显示它包含的文件。
  2. multiSelect: false 也是如此。虽然我一次只能“选择”(以粗体突出显示)一个文件,但我仍然可以根据需要选中任意多个文件夹和文件复选框。
  3. 只有 multiFolder: false 似乎可以按照文档记录工作,但我不知道这是否是因为这是默认行为。

如果我想配置此小部件以允许用户仅选择一个文件夹,我做错了什么?

最佳答案

连接器(是的,您的连接器是自定义的)用于对结果执行过滤。如果您没有查找/使用 jQuery 插件传递的参数,那么结果将不是您所期望的。从上面有人发布的链接( https://github.com/jqueryfiletree/jqueryfiletree/blob/master/dist/connectors/Asp.Net-MVC/FileTreeController.cs )和似乎使用适用选项的 PHP 版本( https://github.com/jqueryfiletree/jqueryfiletree/blob/master/dist/connectors/jqueryFileTree.php ),我们可以稍微更新一下以返回更好的结果集。

注意 - 我们无法深入了解您的文件,因此这是一个使用一些样板代码的非常新鲜的示例。另外,我知道您的答案是关于 .NET core,但即使 4.6 和 Core 之间的语法不完全相同,逻辑仍然应该成立

[HttpPost]
//notice the added additional params to the expected request variables
//these appear to match the names of the jQuery options
public virtual ActionResult GetFiles(string dir, bool multiSelect,
bool onlyFolders, bool onlyFiles)
{
const string baseDir = @"/App_Data/userfiles/";

dir = Server.UrlDecode(dir);
string realDir = Server.MapPath(baseDir + dir);

//validate to not go above basedir
if (! realDir.StartsWith(Server.MapPath(baseDir)))
{
realDir = Server.MapPath(baseDir);
dir = "/";
}

List<FileTreeViewModel> files = new List<FileTreeViewModel>();

DirectoryInfo di = new DirectoryInfo(realDir);

foreach (DirectoryInfo dc in di.GetDirectories())
{
files.Add(new FileTreeViewModel() { Name = dc.Name, Path = String.Format("{0}{1}\\", dir, dc.Name), IsDirectory = true });
}

foreach (FileInfo fi in di.GetFiles())
{
files.Add(new FileTreeViewModel() { Name = fi.Name, Ext = fi.Extension.Substring(1).ToLower(), Path = dir+fi.Name, IsDirectory = false });
}
//lets filter some results using the properties of
//the `FileTreeViewModel()` class
//I have no idea how you are wanting to use multiSelect, so
//it has been left out of this example.
if(onlyFolders){
files = files.Where(x=>x.IsDirectory).ToList();
}
if(onlyFiles){
files = files.Where(x=>!x.IsDirectory).ToList();
}
return PartialView(files);
}

关于jquery - 为什么 jQuery FileTree 在未设置时显示文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46284752/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com