使用 XMLHttpRequest 和 javascript 打开、编辑和保存文本文件
我需要更新网站中的文本文件,我需要打开它然后查看该文本,然后重新输入其中的文本,然后将其保存回服务器。
我能够使用 XMLHttpRequest 打开文件,我可以查看文件上的文本,现在我需要用我从网页输入的文本覆盖该文件上的文本,我如何使用 javascript 和 XMLHttpRequest 来做到这一点?谢谢。
i need to update a text file in my website, i need to open it then view that text then retype the text on it it and then save it back to the server.
i am able to open the file using XMLHttpRequest, i can view the text on the file, now i need to over write the text on that file with text that i would input from a webpage, how can i do that using javascript and XMLHttpRequest? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不幸的是,仅使用 JavaScript 技术无法做到这一点。您将必须使用另一种技术才能写入文件。
例如,您可以使用 PHP 并使用该
方法 ( http://www.php.net/fwrite )
Unfortunately, you cannot do that with only the JavaScript technology. You will have to use another technology in order to write to your file.
You can use PHP for instance and use the
method ( http://www.php.net/fwrite )
另外你需要一个服务器端服务(ASP.Net / PHP等)来处理文件IO,这是一件好事,这不能仅通过Javascript和XMLHttpRequest来完成
In addition you need a serverside service (ASP.Net / PHP etc.) to handle the file IO, its a good thing this can't be done by just Javascript and XMLHttpRequest