codecamp

anyline 技术支持

gitee:https://gitee.com/anyline/anyline

github:https://github.com/anylineorg/anyline

Maven:https://mvnrepository.com/artifact/org.anyline

Maven私服:http://maven.anyline.org/repository/maven-public

新版本中央库更新不及时的,可以用私服

<groupId>org.anyline</groupId>
<artifactId>anyline-*</artifactId>
<version>8.3.7</version>
 
<groupId>org.anyboot</groupId>
<artifactId>anyboot-*</artifactId>
<version>8.3.7.215</version>

有问题解决不了可以联系群:86020680


为什么要使用 anyline ?
anyline 版本说明
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }