简体   繁体   English

Web应用程序中这些术语之间的区别是什么?

[英]what is the difference among these terminologies in web applications?

i wanna to ask what is the difference among these terminologies? 我想问一下这些术语之间的区别是什么? in details 详细

1-Post back 1回发

2-auto post back 2自动回发

3- submit 3-提交

4- refresh(F5) 4-刷新(F5)

5- request the same URL 5-请求相同的URL

6- AJAX call 6-AJAX通话

thanks 谢谢

  1. Action on the HTML form results which submits the form to the same URL. 对HTML表单的操作会导致将表单提交到相同的URL。
  2. Action like selection in drop down box results in Post back. 下拉框中的选择之类的操作将导致回发。
  3. Html form is sent to the specified URL. HTML表单发送到指定的URL。
  4. Resend last HTTP request. 重新发送上一个HTTP请求。
  5. New HTTP GET request for the same URL. 对相同URL的新HTTP GET请求。
  6. Asynchronnous call to a server which does not result in reloading the whole page but instead modify only part of the page. 到服务器的异步调用不会导致重新加载整个页面,而只会修改页面的一部分。 User can work with the page when call is processed. 处理呼叫后,用户可以使用该页面。

These were just very general descriptions. 这些只是非常笼统的描述。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM