javascript 获取服务器目录中文件列表的最简单方法

amrnrhlw  于 2023-05-16  发布在  Java
关注(0)|答案(3)|浏览(305)

我需要得到所有图像的数组(或简单的所有文件)在目录(例如:www.example.com/images/).我更喜欢使用JavaScript,但它很难实现。所以我应该使用PHP吗?
你能帮帮我吗-我不擅长这个。
非常感谢!

g2ieeal7

g2ieeal71#

我不同意@mariobgr的回答。如果不存在阻止目录列表的服务器设置,则可以解析通过请求该目录而生成的html以获得内容。

$ tree maindir
maindir
├── index.html
└── somedir
    ├── doc1
    ├── doc2
    └── doc3

网站Map

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"><!--  JQUERY  -->

  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js">
  </script>
  <title></title>
</head>
<body>
  <h1>Listing /somedir</h1><!-- Custom Script (defered load, after dom ready) -->
  <script>
    $.getJSON('./somedir', data => {
        console.log(data); //["doc1.jpg", "doc2.jpg", "doc3.jpg"] 
    });
  </script>
</body>
xzlaal3s

xzlaal3s2#

Javascript无法获取服务器上的所有文件,因为它是客户端语言。
http://php.net/manual/en/function.glob.php是你需要的。

$all = glob('/path/to/dir/*.*');

$images = glob('/path/to/dir/*.{jpg,png,gif}');
bksxznpy

bksxznpy3#

我设法做到这一点,在基地javascript使用一个 AJAX 命令,以获得文件夹列表作为一个html文件。然后我从里面grep文件名:

function loadDoc() {
            var xhttp = new XMLHttpRequest();
            xhttp.onreadystatechange = function() {
                if (this.readyState == 4 && this.status == 200) {
                    
                    // gets the entire html file of the folder 'logpost' in this case and labels it thing
                    thing = this.responseText
                    searchFor = /.html</g
                    a=0;
                    b=0;
                    var str = "";
            
                    // greps file for .html and then backs up leter by letter till you hot the file name and all
                    while ((dothtmls = searchFor.exec(thing)) != null ){

                        str = "";
                        console.log(dothtmls.index);
                        
                        a = dothtmls.index;

                        while (thing[a]  != '>' ){
                            a--;
                        }
                        a++;
                        while(thing[a] != '<'){
                            str = str + thing[a];
                            a++;
                        }
                        console.log(str);
                    } 
                }
            };
            xhttp.open("GET", "logpost/", true);
            xhttp.send();
            }

这可能不是清洁主义者的方式,但如果你正在使用静态Web服务器,它应该可以工作:)

相关问题