在项目中有时需要验证用户是否以post方式提交。下面是验证源码:
public boolean checkMethod(String method) { if (request.getMethod().equalsIgnoreCase(method)) { return true; } else { return false; } }
调用方式 checkMethod("post").如果以post方式提交为true,否则为FALSE。
时间: 2024-10-11 17:04:15
在项目中有时需要验证用户是否以post方式提交。下面是验证源码:
public boolean checkMethod(String method) { if (request.getMethod().equalsIgnoreCase(method)) { return true; } else { return false; } }
调用方式 checkMethod("post").如果以post方式提交为true,否则为FALSE。