会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
金于虎的个人博客
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
下一页
2017年6月29日
es2016
摘要: 对象解构 http://www.jb51.net/article/70140.htm
阅读全文
posted @ 2017-06-29 09:50 oneboi
阅读(91)
评论(0)
推荐(0)
2017年6月27日
短路原理
摘要: ``` /** * 几乎所有语言中||和&&都遵循“短路”原理, * 如&&中第一个表达式为假就不会去处理第二个表达式,而||正好相反。 * js也遵循上述原则。 * 当||时,找到为true的分项就停止处理,并返回该分项的值,否则执行完,并返回最后分项的值。 * 当&&时,找到为false的分项就停止处理,并返回该分项的值。 **/ // var a = "" || null || 3 || 4...
阅读全文
posted @ 2017-06-27 13:28 oneboi
阅读(620)
评论(0)
推荐(0)
fexbox
摘要: http://www.codeceo.com/article/understanding flexbox everything you need to know.html
阅读全文
posted @ 2017-06-27 08:52 oneboi
阅读(130)
评论(0)
推荐(0)
2017年6月26日
vue @
摘要: ``` vuerouter import from 里的@/xxxx 是什么意思 这是webpack的路径别名 resolve: { // 自动补全的扩展名 extensions: ['.js', '.vue', '.json'], // 默认路径代理 // 例如 import Vue from 'vue',会自动到 'vue/dist/vue.common....
阅读全文
posted @ 2017-06-26 16:03 oneboi
阅读(536)
评论(0)
推荐(0)
2017年6月23日
数据字典
摘要: http://www.jb51.net/article/88134.htm
阅读全文
posted @ 2017-06-23 17:17 oneboi
阅读(86)
评论(0)
推荐(0)
2017年6月22日
thinkphp 关于自定定义静态资源目录
摘要: 静态资源的地址,必须是个从根目录开始的地址,不好会被解析成请求
阅读全文
posted @ 2017-06-22 08:52 oneboi
阅读(2470)
评论(0)
推荐(0)
2017年6月21日
静态资源目录设置
摘要: 定义常量的形式
阅读全文
posted @ 2017-06-21 14:53 oneboi
阅读(527)
评论(0)
推荐(0)
本地存储
摘要: ``` var Util = (function() { var prefix = 'king'; var StorageGetter = function(key) { return localStorage.getItem(prefix + key); } var StorageSetter = function(key, val)...
阅读全文
posted @ 2017-06-21 11:30 oneboi
阅读(115)
评论(0)
推荐(0)
2017年6月19日
F方法 写配置文件
摘要: F('data',$Data,TEMP_PATH); http://document.thinkphp.cn/manual_3_2.html fast_cache
阅读全文
posted @ 2017-06-19 14:43 oneboi
阅读(127)
评论(0)
推荐(0)
thinkphp 3.2 {$Think.} 系统变量输出
摘要: http://document.thinkphp.cn/manual_3_2.html system_var
阅读全文
posted @ 2017-06-19 14:40 oneboi
阅读(463)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
下一页
公告