欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

There was an unexpected error (type=Not Found, status=404)---采用layui出现的问题

程序员文章站 2022-07-14 22:59:54
...

1.问题描述:
我在做springboot项目的时候,采用了layui的弹出框,发现一个问题,如果from标签中含有button并且指向其他的controller的方法。那么后台会同时去跑我的button指向的controller和from标签中的action指向的controller两个方法,导致我页面出现这个一些意想不到的结果。我把button按钮改为input type="button"后正常了。具体没有研究为什么。
具体代码如下:

There was an unexpected error (type=Not Found, status=404)---采用layui出现的问题

There was an unexpected error (type=Not Found, status=404)---采用layui出现的问题

**最后将

<button onclick="selectUserDialog()" class="seachBtn">添加所属人</button>

改成以下代码**

<input type="button" onclick="selectUserDialog()" class="seachBtn" value="添加所属人" />
相关标签: java