上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 37 下一页
摘要: /** * 读取压缩包目录 */ public function getDecompression() { $url = public_path('uxradar.zip'); $zipper = new \ZipArchive(); $zipStatus = $zipper->open($url) 阅读全文
posted @ 2020-11-17 18:20 明明一颗大白菜 阅读(907) 评论(0) 推荐(0) 编辑
摘要: 解决方法 find /usr/local -iname 'zipconf.h' ln -s /usr/local/lib/libzip/include/zipconf.h /usr/local/include 阅读全文
posted @ 2020-11-17 11:24 明明一颗大白菜 阅读(1466) 评论(0) 推荐(0) 编辑
摘要: php.ini 中缺省的最长执行时间是 30 秒,这是由 php.ini 中的 max_execution_time 变量指定,如果脚本需要跑很长时间,例如要大量发送电子邮件,或者分析统计大量数据,服务器会在 30 秒后强行中止正在执行的程序,这种情况就要更改php脚本最大执行时间。 PHP设置脚本 阅读全文
posted @ 2020-10-10 12:03 明明一颗大白菜 阅读(1301) 评论(0) 推荐(0) 编辑
摘要: 1. 禁用 yum插件 fastestmirror 1)修改插件的配置文件 # cp /etc/yum/pluginconf.d/fastestmirror.conf /etc/yum/pluginconf.d/fastestmirror.conf.bak # vi /etc/yum/pluginc 阅读全文
posted @ 2020-09-21 17:32 明明一颗大白菜 阅读(381) 评论(0) 推荐(0) 编辑
摘要: function mix(...mixins) { class Mix { constructor() { for (let mixin of mixins) { copyProperties(this, new mixin()); // 拷贝实例属性 } } } for (let mixin of 阅读全文
posted @ 2020-09-16 17:54 明明一颗大白菜 阅读(234) 评论(0) 推荐(0) 编辑
摘要: worker_script.js: const workerCode = () => { self.onmessage = (e) => { setInterval(() => { // 自己的逻辑代码 },e.data); }; }; let code = workerCode.toString( 阅读全文
posted @ 2020-09-16 17:10 明明一颗大白菜 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 给父元素加上 transform属性,fixed即可根据父容器定位。 阅读全文
posted @ 2020-09-08 14:26 明明一颗大白菜 阅读(1154) 评论(0) 推荐(0) 编辑
摘要: 新建一个worker.js文件,编写worker子线程脚本,代码如下: const workercode = () => { self.onmessage = function(e) { console.log('Message received from main script'); var wo 阅读全文
posted @ 2020-09-01 19:26 明明一颗大白菜 阅读(3400) 评论(1) 推荐(0) 编辑
摘要: 看一些资料,reserse的导入是这样写的: from django.core.urlresolvers import reverse 但是IDE会进行报错,因为这是2.0之前的写法,2.0之后的写法为: from django.urls import reverse 阅读全文
posted @ 2020-09-01 08:13 明明一颗大白菜 阅读(431) 评论(0) 推荐(0) 编辑
摘要: 在使用url的时候,有些地方是这样写的: url(r'^blog/', include('blog.urls', namespace='blog',app_name='blog')) 但是会报错: Specifying a namespace in include() without providi 阅读全文
posted @ 2020-09-01 07:57 明明一颗大白菜 阅读(355) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 37 下一页
<-- -->