“TeslaManage.exe”(Win32): 已加载“F:\TeslaManageProject\TeslaManage\x64\Debug\TeslaManage.exe”。已加载符号。“TeslaManage.exe”(Win32): 已加载“C:\Windows\System32\ntd ...
分类:
其他好文 时间:
2019-11-11 09:37:14
阅读次数:
198
这里讲解几个在 Linux 操作系统上使用 fork 系统调用。(不定期更新) 一、atexit 函数 void cleanup(void) { printf("Cleaning up\n"); } void fork6() { atexit(cleanup); printf("L0"); fork ...
分类:
系统相关 时间:
2019-11-10 10:23:16
阅读次数:
85
error: child process failed, exited with error number 1 第一次安装mongodb,随后启动一般不会出现上面的错误,出现这种错误的原因一般是mongodb进程非正常关闭导致的(例如用kill关闭mongo),导致出现mongod.lock这个文件 ...
分类:
数据库 时间:
2019-11-09 13:44:27
阅读次数:
98
一、参数说明 参数作用 width 选项卡宽度,单位像素 height 选项卡高度 cursor 鼠标停留的样式 padding 外部空间填充,是个最多4个元素的列表 style 设置menubotton的样式 NoteBook方法列表: .add(child, **kw)该child 参数是一个小 ...
分类:
其他好文 时间:
2019-11-09 12:00:37
阅读次数:
348
百度了好多大多数都是一样的解决方案,出现这个问题看看是不是 <mvc:exclude-mapping path="/login"/>放到<bean class="com.fan.qx.web.LoginInterceptor"></bean>下面了,正确的配置: <!-- 配置登陆拦截器 --> < ...
分类:
移动开发 时间:
2019-11-08 22:35:41
阅读次数:
143
CSS3选择器之:last-child - Eric 真实经历 最近开发项目的时候发现了一个这么多年忽略的问题,和大家分享一下。项目使用的是Antd组件库,有一个搜索框是这样的: 为了保证下拉框的内容随着页面滚动,antd提供了getPopupContainer属性,可以自定义下拉框的参照对象,于是 ...
分类:
Web程序 时间:
2019-11-08 16:19:24
阅读次数:
786
前言:我们在码代码的时候,经常会遇到需要给第一个或者最后一个元素添加或删除样式,还有一些比较特殊的是选取第几个元素添加或删除样式,下面记录css选择器中常见的选择器:相邻兄弟选择器(+)、子选择器(>)、兄弟选择器(~)、first-child、:last-child、:nth-child()、:nth-last-child()的用法。相邻兄弟选择器(+)相邻兄弟选择器可选择紧接在另一个元素
分类:
Web程序 时间:
2019-11-08 09:15:21
阅读次数:
117
毕竟是生产。。。。。 提示以下信息: gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now 原因是:这个压缩包没有用gzip格式压缩,所以不用加z ...
分类:
其他好文 时间:
2019-11-06 15:19:02
阅读次数:
106
刚开始学习Vue路由时,老是不知道<router-view />标签放哪里,很难受,慢慢使用很久后,才弄明白,记住一句话:将此钉子(<router-view />)埋于他路径的上一级模板内即可 如: { path: "/one", name: "one", component: one, child ...
分类:
其他好文 时间:
2019-11-05 16:39:34
阅读次数:
316
父组件:<template> <div id="app"> <child-a ref="child"></child-a> <!--用ref给子组件起个名字--> <button @click="getMyEvent">点击父组件</button> </div></template><script> ...
分类:
其他好文 时间:
2019-11-05 12:08:41
阅读次数:
82