Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试制作一个网页,允许用户输入 .txt 文件的文件路径,然后搜索和替换 .txt 文件中的字符串。我做了一些搜索,只发现页面说由于安全原因无法完成,我很确定这是垃圾。
我该怎么做?
这不是垃圾。有FileReader,但它仅受某些浏览器支持,并且仅授予您只读访问权限。 Chrome 显然支持,FileWriter但您只能写入沙盒环境。
FileReader
FileWriter
您需要将文件上传到服务器,进行修改,然后将修改后的文件发回——注意这不会删除原始文件。