摘要: Spring MVC项目中页面重定向一般使用return "redirect:/other/controller/";即可。 而Spring Boot当我们使用了@RestController注解,上述写法只能返回字符串,解决方法如下: 阅读全文
posted @ 2019-04-15 17:32 发疯的man 阅读(9041) 评论(0) 推荐(1) 编辑
摘要: // 判断是否为对象 function isObject(o) { return (typeof o === 'object' || typeof o === 'function') && o !== null } // 迭代递归法:深拷贝对象与数组 function deepClone(obj) { if (!isObject(obj)) { thr... 阅读全文
posted @ 2019-04-15 15:59 发疯的man 阅读(326) 评论(0) 推荐(0) 编辑