springMVC文件上传与下载
摘要:/** *文件上传 */ 1 @RequestMapping(value = { "download" }) 2 @ResponseBody 3 public void download( 4 HttpServletResponse response, HttpServletRequest requ
阅读全文
demo_form.jsp
摘要:<%@ page contentType="text/html;charset=UTF-8" %> <%@ include file="/WEB-INF/views/include/taglib.jsp"%> <html> <head> <title></title> <meta name="dec
阅读全文
表单效验-layui
摘要:function checkData(){ if($("input[name='regionName']").val()==""){ layer.msg("所属地区不能为空", {icon: 2,time:2000}); return false; } if($("input[name='phone
阅读全文
树结构-配置
摘要:1 @ResponseBody 2 @RequestMapping(value = "treeData") 3 public List<Map<String, Object>> treeData(@RequestParam(required=false) String extId, HttpServ
阅读全文