最近运行了一下之前用easyswoole写的一个爬虫的demo,却发现启动直接报错。swServer_start_check: onTask event callback must be set at,大致的意思是没有设置onTask事件。因为easyswoole是个框架,遇到这种问题真不好排查。 ...
分类:
其他好文 时间:
2021-02-04 12:06:26
阅读次数:
0
问题描述: 后端小伙伴,要在局域网内,访问我自己的vue 项目 解决办法: (1)关闭防火墙 (2)找到自己的 IP 地址 (2)在 vue 的package.json 中添加以下代码 (dev: 后面添加 -- host ip地址或者 0.0.0.0) * vue-cli 2和 vue-cli 3 ...
分类:
其他好文 时间:
2021-02-04 12:05:18
阅读次数:
0
方法一、从发行版的源中安装(推荐) 在 Kali GNU/Linux Rolling、Ubuntu 等 Debian 衍生版中,执行如下安装命令: apt-get install fcitx fcitx-bin fcitx-tools fcitx-libs-dev fcitx-table-wbpy ...
分类:
其他好文 时间:
2021-02-04 11:46:23
阅读次数:
0
?## 1. Redis集群介绍 现存的问题: redis提供的服务OPS可以达到10万/秒,当前业务OPS已经达到10万/秒 单主多从,主服务器扛不住压力了 数据总量过大,内存单机容量达到256G,当前业务需求内存容量1T 使用集群的方式可以快速解决上述问题 集群就是使用网络将若干台计算机联通起来 ...
分类:
其他好文 时间:
2021-02-03 11:06:35
阅读次数:
0
1.rest获取 授权调用例子 总仓出库结果接口地址: http://dev.hzero.super.com:8080/mes/v1/4/z-lighting-shelf-ifaces/receiveLightingShelfIface传入token参数: Authorization:bearer ...
分类:
其他好文 时间:
2021-02-03 11:04:57
阅读次数:
0
看了vue3的文档 .sync 貌似被抛弃了,无情,所以再来看一遍文档。 非 Prop 的 Attribute 一个非 prop 的 attribute 是指传向一个组件,但是该组件并没有相应 props 或 emits 定义的 attribute。常见的示例包括 class、style 和 id ...
分类:
其他好文 时间:
2021-02-03 10:34:36
阅读次数:
0
ionic cordova build ios 时报错: No profiles for '***' were found: Xcode couldn't find any iOS App Development provisioning profiles matching '***'. Autom ...
分类:
移动开发 时间:
2021-02-03 10:30:48
阅读次数:
0
//父组件 const LayoutMain = ()=>{ const [flowImg,setFlowImg] = useState(false); const openModal = ()=>{ setFlowImg(true) console.log(flowImg); } const ha ...
分类:
其他好文 时间:
2021-02-03 10:29:31
阅读次数:
0
1,class / style 绑定就是专门用来实现动态样式效果的技术 2,class 绑定 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=dev ...
分类:
其他好文 时间:
2021-02-02 11:31:30
阅读次数:
0
定义将字典集合Dictionary转换为动态对象的方法 #region 将字典集合转换为动态对象 /// <summary> /// 将字典集合转换为动态对象 /// </summary> /// <param name="propertyDics">属性/属性值字典集合</param> /// < ...