如何使用javascript通过浏览器访问和浏览网络共享?
我正在帮助一位同事编写一个 html 页面,该页面必须显示本地网络共享的内容(文档)。 Html 页面不会由任何 Web 服务器提供服务,它只是文件系统上的纯 html 页面。
有谁知道一些 Javascript 库可以让用户浏览共享、列出文件和文件夹?
I'm helping a coworker to code an html page that has to display contents (documents) of a local network share.
Html page will not be served by any web server, it will be just a plain html page on file system.
Does anyone know some Javascript libraries that let users browse the share, listing files and folders?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,它不存在。 同源政策导致了这个问题。
如果存在这样的 JavaScript,则必须由文件共享所在的系统和端口提供服务。这听起来似乎违背了要点。
现在,大多数 Web 服务器都内置了索引列表服务,可以为浏览器列出 Web 文件夹的内容。 ftp 浏览器中也有类似的功能。
No, it doesn't exist. Same origin policy makes this problematic.
If such a javascript existed it would have to be served by the system and port that the file share was on. Which sounds like it defeats the point.
Now there is an index listing service built into most web servers that can list the contents of a web folder for a browser. There is also a similar capability in the browser for ftp.