Androidapi.JNI.Support引用这个单元 procedure _InstallApk(Apk: string); var LFile: JFile; LIntent: JIntent; begin LFile := TJFile.JavaClass.init(StringToJStr ...
分类:
移动开发 时间:
2020-04-24 16:01:34
阅读次数:
145
1、在 Modal.vue 里使用具名插槽,父子组件传值: <div class="md-content"> <div class="confirm-tips"> <!-- <p slot="message">你确认要删除此条数据吗?</p> --> <slot name="message"></s ...
分类:
其他好文 时间:
2020-04-24 14:35:52
阅读次数:
105
update email_content set Content = replace(Content ,'001.11','002.22') Error Code: 1175. You are using safe update mode and you tried to update a tabl ...
分类:
数据库 时间:
2020-04-24 14:28:48
阅读次数:
85
原文:掌握MySQL连接查询到底什么是驱动表 准备我们需要的表结构和数据 两张表 studnet(学生)表和score(成绩)表, 创建表的SQL语句如下 CREATE TABLE `student` ( `id` int(11) NOT NULL, `no` varchar(20) DEFAULT... ...
分类:
数据库 时间:
2020-04-24 13:02:21
阅读次数:
70
今天卸载了JDK8,随后安装了 JDK14,但是配置完环境变量之后,还是不行,出现问题如下: Error: opening registry key 'Software\JavaSoft\Java Runtime Environment 最终确定原因,因为path环境变量中,有在新安装的JDK14前 ...
分类:
编程语言 时间:
2020-04-24 12:58:06
阅读次数:
342
nginx配置文件简单介绍nginx配置文件所在位置:/usr/local/nginx/conf我们使用vi命令查看nginx.conf里面内容cd/usr/local/nginx/confvinginx.conf下面我们就对里面内容进行分块讲解一下第一部分全局块#usernobody;worker_processes1;#error_loglogs/error.log;#error_loglog
分类:
其他好文 时间:
2020-04-24 01:48:54
阅读次数:
72
为什么要使用第三方loader 一般引入样式文件,我们会在html中引入样式标签。 很明显,这样就跟之前在script中引入js文件一样,会导致二次请求。我们希望webpack像处理js文件一样处理样式文件。 如何引入样式 于是我们在入口文件, 在main.js中通过import方式引入样式文件 。 ...
分类:
Web程序 时间:
2020-04-24 00:46:43
阅读次数:
107
index.php <?php /** * Created by PhpStorm. * User: mac * Date: 2020/4/23 * Time: 21:57 */ echo posix_getpid(); while(true) { sleep(1); } php index.php ...
分类:
Web程序 时间:
2020-04-23 22:49:02
阅读次数:
112
A bridge-domain can be associated with only one BVI. However a vrf can contain routes to multiple BVIs. To configure a BVI interface, create it using ...
分类:
其他好文 时间:
2020-04-23 19:28:06
阅读次数:
94
Python中有个logging模块可以完成相关信息的记录,在debug时用它往往事半功倍 1. 日志级别 日志一共分成5个等级,从低到高分别是: DEBUG INFO WARNING ERROR CRITICAL 说明: DEBUG:详细的信息,通常只出现在诊断问题上 INFO:确认一切按预期运行 ...
分类:
其他好文 时间:
2020-04-23 17:31:53
阅读次数:
114