type
status
date
slug
summary
tags
category
icon
password
Property
总结,有哪些方法可以通过浏览器往服务器发请求?
- 表单form的提交
- 超链接。<a href="http://localhost:8080/oa/save?username=zhangsan&password=123">用户只能点击这个超链接</a>
document.location
window.location
window.open("url")
- 直接在浏览器地址栏上输入URL,然后回车(这个也可以手动输入,提交数据也可以成为动态的)
以上所有的请求方式均可以携带数据给服务器,只有通过表单提交的数据才是动态的。