为啥html表单中用我用get能请求到页面用post不能请求到页面啊??

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥html表单中用我用get能请求到页面用post不能请求到页面啊??相关的知识,希望对你有一定的参考价值。

<form id="form1" name="form1" method="post" action="html/index.html">这样就不能提交到页面 405错误 <form id="form1" name="form1" method="get" action="html/index.html"> 这样就能提交到页面 什么原因啊? 求解释!

参考技术A 应该是你程序的问题,不是HTML表单的问题。你看看你的接收数据的程序吧。本回答被提问者和网友采纳 参考技术B 你用哪个方法获取的

我用form直接提交然后用@PostMapping接,为啥会报415?

页面:<form id="loginForm" action="/dologin" method="post" >
后台@PostMapping(value = "/dologin")
就是这样,为什么就会报
type=Unsupported Media Type, status=415).
Content type 'text/plain;charset=UTF-8' not supported


怎么解决啊?

你的请求头中Content type属性值的问题引起的,在form表单中有个属性enctype ,你把它设置为application/x-www-form-urlencoded试试 参考技术A 用RequestMapping追问

那PostMappiing是干什么吃的?!

以上是关于为啥html表单中用我用get能请求到页面用post不能请求到页面啊??的主要内容,如果未能解决你的问题,请参考以下文章

jQuery ajax post提交本页面处理,为啥提交后URL还携带参数

用python复制form表单的问题?

Java Web用get提交表单能跳过登陆页面直接通过验证,要避免此情况,编写servlt时可以怎样处理?

html 表单一定要用submit提交吗

iframe发送post请求

为啥使用了form表单之后页面会跳转,并且页面一片空白