为啥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
?
怎么解决啊?
那PostMappiing是干什么吃的?!
以上是关于为啥html表单中用我用get能请求到页面用post不能请求到页面啊??的主要内容,如果未能解决你的问题,请参考以下文章
jQuery ajax post提交本页面处理,为啥提交后URL还携带参数