使用 XMLHttpRequest 和 javascript 打开、编辑和保存文本文件

发布于 2024-11-04 13:29:05 字数 174 浏览 0 评论 0原文

我需要更新网站中的文本文件,我需要打开它然后查看该文本,然后重新输入其中的文本,然后将其保存回服务器。

我能够使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柠檬心 2024-11-11 13:29:05

不幸的是,仅使用 JavaScript 技术无法做到这一点。您将必须使用另一种技术才能写入文件。

例如,您可以使用 PHP 并使用该

fwrite($fp, "The text coming from XMLHttpRequest");

方法 ( 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

fwrite($fp, "The text coming from XMLHttpRequest");

method ( http://www.php.net/fwrite )

本王不退位尔等都是臣 2024-11-11 13:29:05

另外你需要一个服务器端服务(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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文