jquery:有没有办法从主机目录读取所有文件?

发布于 2024-12-01 09:05:51 字数 104 浏览 1 评论 0原文

我只是集思广益,设计一个基于页面目录中的文件动态生成页面的界面。我想知道jquery是否可以做到这一点?例如,页面仅显示每个文件的信息,可能是缩略图等。如果我要将新文件放入该目录,页面将显示它。

im just brainstorming an interface that dynamically generates a page based on files located in page's directory. I'm wondering if jquery can do this? For instance, a page just displays information for each file, maybe a thumbnail, etc. If i were to drop a new file into that directory, the page would show it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

仙气飘飘 2024-12-08 09:05:51

Jquery 是一个用 javascript 编写的库,基本上运行在客户端浏览器上。因此,如果你想与服务器(主机)一起工作,你需要通过Ajax或其他技术与服务器进行通信。然而,Jquery 不具备读取服务器中文件的能力。

Jquery is a library written in javascript that basically runs on client browser. So if you want to working with server (host), you need to communicate with server via Ajax or other techniques. Jquery, however, does not have an ability to read files in the server.

姜生凉生 2024-12-08 09:05:51

纯客户端 Javascript 在设计上无法做到这一点(这将是一个严重的安全漏洞);它需要能够与服务器通信。可以编写一个可以返回目录内容的服务器端应用程序,Javascript 将能够发送 AJAX GET 请求来拉出并显示该内容。

Pure client-side Javascript can't do this by design (it would be a serious security hole); it would need to be able to speak to the server. It would be possible to write a server-side app that can return the contents of the directory, which Javascript would be able to send AJAX GET requests to pull out and display.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文