我的BUG日志(2020080501):MVC中form表单的action路径,要写相对路径而不是绝对路径

就是一个斜杠的问题,但也不是小问题了。如果使用绝对路径的,就会因为contextpath没有加上而无法访问controller!
错误示范:

  <form action="/user/findOne" method="post">
    用户名:<input type="text" name="name"><br/>
    密码:<input type="text" name="password"><br/>
    <button type="submit">登录button>
  form>

正确示范:

  <form action="user/findOne" method="post">
    用户名:<input type="text" name="name"><br/>
    密码:<input type="text" name="password"><br/>
    <button type="submit">登录button>
  form>

你可能感兴趣的:(备忘录)