input的method属性

Posted 王文健的Blogs~~!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input的method属性相关的知识,希望对你有一定的参考价值。

method属性
请求方式有七种 默认get,
常用值 get和post。
 
[get和post的区别]
  • get通过URL传递数据,所有内容在URL可以看到。而POST无法看见。
  • get传递数据不安全,而POST传递数据安全。
  • get能够传递的数据量有限,且只能传递文本信息。POST可以传递大量数据,并且可以传递图片,文件等其他内容。
  • get的传输速度要比post快。
 
[get使用URL传递数据的格式]
  • http://URL地址.html?name1=value1&name2=value2
  • 用?表示参数传递的开始,多个参数之间用&符号链接,同一个参数用name来标识value。
所以,使用表单时,input输入框的name属性一定不能省略。
如果省略input的name属性,则这个input的数据,不会往后台传递。

以上是关于input的method属性的主要内容,如果未能解决你的问题,请参考以下文章

Input and Output Method

Linux sogou input method

input的属性

commandButton/commandLink/ajax action/listener method not invoked or input value not updated

uni-app计算属性(computed)、方法(methods)、监听(watch)

Vue中的methods方法