JS> FTP>网站目录>文件列表
是否可以使用 Javascript 调用对指定 URL 的 FTP 调用并检索此 Web 目录中的所有文件?
...
Is it possible to use Javascript to invoke a FTP call to a specified URL and retrieve all files in this webdirectory?
...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您正在谈论浏览器中的 javascript,那么如果没有一些支持的服务器端代码,这是不可能的。
您可以使用 javascript 对服务器进行 ajax 调用 - 服务器可以调用 FTP 并将文件列表(甚至文件)检索到服务器。然后可以从服务器下载这些。
Assuming you are talking about javascript in the browser, then this is not possible without some supporting server side code.
You can use javascript to make an ajax call to a server - the server can invoke FTP and retrieve a file list (or even the files) to the server. These can then be downloaded from the server.
9年后,事情变得容易多了。
这是一个独立的 Node.js 示例,展示了当今如何使用 javascript 轻松实现服务器端的事情。
index.js
package.json
9 years later things are much easier.
Here is a standalone node.js example that shows how on the server side thing can be implemented with javascript theses days easily.
index.js
package.json