摘要:
//添加cookie function setCookie(name,value,second){ if(!name||!value) return; var exp = new Date(); if(!second){ exp.setDate(exp.getDate()+1); exp.setHo 阅读全文
摘要:
使用 jQuery-File-Upload 库的时候碰到了 $(...).fileupload is not a function 和 $.widget is not a function 问题。 解决方法 :jquery.ui.widget.js 这个js文件一定要放在这个库其它js文件的前面。 阅读全文
摘要:
创建SpringBoot项目有两种方式(这里使用到的IDE是IDEA) 第一种,打开https://start.spring.io/ Generate a (这里可以选择 Maven 或者 Gradle ) with (选择您使用的语言 Java or Kotlin )and Spring Boot 阅读全文