socket.error: [Errno 99] Cannot assign requested ...
分类:
其他好文 时间:
2020-05-22 21:45:27
阅读次数:
77
cmd = os.popen('adb shell dumpsys activity|findstr mFocus').read() 执行上述代码后会os.popen后台并不会结束 需要改为 cmd = os.popen('adb shell dumpsys activity|findstr mFo ...
分类:
编程语言 时间:
2020-05-22 21:34:47
阅读次数:
314
这个错误是我在使用sencha app build Android 时报出来的错误,刚刚开始我也以为自己的代码哪里写错了 最后发现不是,原来只是缺少了cordova 的 cordova-plugin-splashscreen 插件,只要切换到cordova 目录添加cordova-plugin-sp ...
分类:
其他好文 时间:
2020-05-22 19:39:33
阅读次数:
59
yum安装docker时报错[Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', '/usr/tmp', '/'] 之后百度说是内存不足了 df -h发现我的/dev/mapper/cl-root没有内存了 用命令 ...
分类:
移动开发 时间:
2020-05-22 13:11:53
阅读次数:
230
//新增的所有数据List<Admin> adminList = new ArrayList<>();//数据库中的所有数据List<Admin> adList = adminDao.find(new Admin());//新增数据的所有idList<String> adminIdList = ne ...
分类:
数据库 时间:
2020-05-22 13:02:50
阅读次数:
82
访问ros的5000端口,就在ip firewall address-list增加一个IP,实现重新拨号切换IP :global aaa [/ip firewall address-list find list="changeip"];:global k:global a1:global a2do ...
分类:
其他好文 时间:
2020-05-22 12:43:05
阅读次数:
119
cannot find module providing package或cannot find main module 问题解决如果你是使用go mod 管理依赖,首先检查:项目根目录有没有go.mod文件 如果没有 执行命令go mod init在当前目录下生成一个go.mod文件 具体参考:G ...
分类:
其他好文 时间:
2020-05-22 09:19:01
阅读次数:
623
在使用vue的时候遇到这样一个报错:TypeError: Cannot read property '_wrapper' of undefined。 这个问题直接导致了整个页面崩溃假死,是一个影响十分严重的问题。 排查代码,发现原因是因为有一个@click事件中绑定的处理函数在代码上下文中并没有定义 ...
分类:
移动开发 时间:
2020-05-22 09:18:13
阅读次数:
196
原数组: var beforeData= [ { name: "tony", id: "1", age: "20" }, { name: "jack", id: "2", age: "21" }, { name: "tony", id: "3", age: "50" }, { name: "jack ...
分类:
编程语言 时间:
2020-05-21 21:08:52
阅读次数:
114
代码注入漏洞: OWASP将其定义为在客户端提交的代码在服务器端接收后当作动态代码或者嵌入文件处理。Wikipedia将其定义为客户端所提交的数据未经检查就让Web服务器去执行。 一:按照owasp分类,以下漏洞可以视作代码注入: 1.OS命令执行 1 <?php 2 $command=$_REQU ...
分类:
其他好文 时间:
2020-05-21 17:47:16
阅读次数:
58