在springboot项目中,使用Security进行权限验证,from表单提交验证时,总是不通过验证, HTTPエラー:204 无法通过 。
解决方法
添加一行token的数据
<input type="hidden" th:value="${_csrf.token}" th:name="${_csrf.parameterName}">
<form id="framehtml_form" target="framehtml" method="post" action="url">
<input type="hidden" th:value="${_csrf.token}" th:name="${_csrf.parameterName}">
</form>
<iframe name="framehtml" id ="framehtml" class="layadmin-iframe" frameborder="0" style="display:none;width:1160px;height:610px;" ></iframe>
问题解决。。