使用ajax/javascript扫描目录中的文件
我是 javascript 和 ajax 的初学者。我想用 ajax 来填充我的标签,其中 特定目录的内容。
ajax 中是否有像 php 中那样的 opendir() fxn ? 我从哪里开始?
Im a beginner of javascript and ajax. and i would like to use
ajax to populate my tag with which are the
content of a particular directory.
is there such opendir() fxn in ajax just like in php?
Where do i start from here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您使用ajax访问PHP,因此您可以从一个简单的开始ajax请求并返回
scandir
结果。初学者的快速指南可以在 这个问题,应该可以让您开始。
Since you use ajax to access PHP, you can start with a simple ajax request and return the
scandir
results.A quick guide for beginners can be found in this question, which should start you on your way.
不,无法列出服务器或客户端目录中的文件。您可以为此创建一个服务器包装器脚本,但最好在更高级别上处理它(例如返回资源列表,同时不公开资源的实现)。
No, there is no way to list files in either a server or client directory. You can make a server wrapper script for this, but it may be better to approach it at a higher level (e.g. return a list of resources, while not exposing the implementation of a resource).