在/usr/local/freeswitch/conf/dialplan/default.xml文件里,<extension name="Local_Extension">节下面 <action application="set" data="RECORD_TITLE=Recording ${des ...
分类:
其他好文 时间:
2020-06-13 13:05:46
阅读次数:
139
第一步 在pom.xml中添加 <dependencies> <dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-core_2.11</artifactId> <version>2.3.3</version> </de ...
分类:
其他好文 时间:
2020-06-13 12:39:49
阅读次数:
172
SELECT to_json('some "text"'::text)select array[to_json('Some "text"'::TEXT)] ; select array_to_json(array[to_json('Some "text"'::TEXT)]) ; select arr ...
分类:
数据库 时间:
2020-06-13 09:14:54
阅读次数:
327
1.获取2019-2020年每个月份的充值总额 USE xchat; SELECT month(update_time) as month,sum(amount) FROM charge_record WHERE buss_type=0 and charge_status=2 and charge_ ...
分类:
其他好文 时间:
2020-06-12 20:35:33
阅读次数:
119
foucs时无边框需设置outline input { border: 0; outline: none; } ...
分类:
Web程序 时间:
2020-06-12 20:02:03
阅读次数:
76
1.数据清洗 步骤: 1.查询charge_record表业务类型为充值且订单状态为成功的数据 2.将上述数据转移到本地数据库 使用如下脚本: # coding=utf-8import pymysql# 原数据库链接db1 = pymysql.connect( host='***', port=33 ...
分类:
数据库 时间:
2020-06-12 19:54:51
阅读次数:
89
1.数据来源 charge_record表数据 提取代码如下: # coding=utf-8import pymysql# 原数据库链接db1 = pymysql.connect( host='***', port=3306, user='***', passwd='***', db='***', ...
分类:
数据库 时间:
2020-06-12 18:39:28
阅读次数:
134
<input type="file" accept="image/*" /> audio/* 接受所有的声音文件。 video/* 接受所有的视频文件。 image/* 接受所有的图像文件。 MIME_type 一个有效的 MIME 类型,不带参数。请参阅 IANA MIME 类型,获得标准 MIM ...
分类:
Web程序 时间:
2020-06-11 19:30:20
阅读次数:
270
可替换元素和非替换元素 可替换元素replaced element也称作可置换元素,其展现效果不是由CSS来控制的,这些元素是一种外部对象,它们外观的渲染,是独立于CSS的。非置换元素non-replaced element也称作非替换元素,其内容由CSS渲染直接表现给客户端。 可替换元素 一个内容 ...
分类:
其他好文 时间:
2020-06-10 13:27:56
阅读次数:
71
click 类型:Boolean 默认值:false 作用:better-scroll 默认会阻止浏览器的原生 click 事件。当设置为 true,better-scroll 会派发一个 click 事件,我们会给派发的 event 参数加一个私有属性 _constructed,值为 true。 ...
分类:
其他好文 时间:
2020-06-09 19:02:16
阅读次数:
127