JavaScript 可以用来在服务器上发送和存储信息吗?

发布于 2024-11-18 22:42:57 字数 167 浏览 3 评论 0原文

例如:当您在 stackoverflow 上提问时,您在文本框中输入信息,该信息将被发送到存储该信息并向最终用户显示的服务器。

发送该信息以及检索/显示该信息的过程可以用JS编写吗? 如果是的话,这样做是一种很好的语言还是有更有效的语言? 如果不是,这个过程通常是用什么写的?

先感谢您。

For example: When you ask a question on stackoverflow, you input information into the text box, and that information is sent to the server where it is stored and displayed to the end-user.

Can the process of sending this information, and retrieving/displaying it be written in JS?
If yes, is it a good language to do so or are there more efficient ones?
If no, what is this process usually written in?

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

木落 2024-11-25 22:42:57

是的。您可以使用 AJAX (http://en.wikipedia.org/wiki/XMLHttpRequest) 从服务器发送和接收信息。

Yes. You can use AJAX (http://en.wikipedia.org/wiki/XMLHttpRequest) to send and receive information from a server.

你是我的挚爱i 2024-11-25 22:42:57

您可以使用ajax调用来执行任何服务器端方法。请检查链接

you can use ajax calls to do any server side methods. Please check the link

‖放下 2024-11-25 22:42:57

[编辑在重新阅读原始问题后删除了不相关的响应...]

就 javascript 的作用而言,它被称为客户端语言,因为它实际上只存在于客户端的浏览器中,而不是在服务器上。它是一个非常漂亮的工具,可以监视用户在浏览器中执行的操作、打包数据并将其发送到服务器。那时服务器端语言将接管、处理数据并将响应发送回客户端的浏览器。通常,客户端的浏览器接收服务器响应,但javascript也能够接收服务器响应,这通常称为AJAX(异步JavaScript和XML)。

这是一个非常广泛的主题,但我明白你必须从某个地方开始才能知道要问哪些更具体的问题。希望这有帮助。

[edit removed irrelevant response after re-reading original question...]

As far as javascript's role, it's called a client-side language because it really just lives in the client's browser, and not on the server. It is a very nifty tool for keeping an eye on what the user is doing in the browser, packaging up data, and firing it off to send to the server. That's when the server-side languages would take over, process the data, and send a response back to the client's browser. Usually, the client's browser receives the server responses, but javascript is also capable of receiving server responses, which is usually called AJAX (Asynchronous JavaScript and XML).

It's a very broad subject, but I appreciate that you have to start somewhere to know what more specific questions to ask. Hope this helps.

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