通过一个案例解释arr.length var arr = []; arr[0] = 0; arr[1] = 1; arr.foo = 'c'; console.log(arr.length); // 2 这里要理解所谓‘数组’其实是array类型对象的一个特殊作用,就是:我们可以对它进行一种模式的数 ...
分类:
编程语言 时间:
2021-04-24 13:15:31
阅读次数:
0
不多BB,直接开干!!! 第一步:进入hive安装目录下面的conf目录,修改hive-site.xml文件 cd /opt/module/hive/conf vim hive-site.xml 第二步:修改如下内容 <property> <name>javax.jdo.option.Connect ...
分类:
其他好文 时间:
2021-04-24 11:50:36
阅读次数:
0
百度下载QueryList类库文件 /** * 抓取数据源 * @param $rules array 抓取规则 * @param $url string url * @return mixed */ function getQueryList($rules, $url) { $html = fil ...
分类:
Web程序 时间:
2021-04-23 12:26:15
阅读次数:
0
我的idea使用maven引入依赖没有成功,只能下载jar包 下载jar包地址: http://repo.e-iceblue.com/nexus/content/groups/public/e-iceblue/spire.xls.free/ pom.xml中配置jar所在路径 <dependency ...
分类:
其他好文 时间:
2021-04-23 12:25:08
阅读次数:
0
官网快速开始-: https://mp.baomidou.com/guide/quick-start.html#%E5%BC%80%E5%A7%8B%E4%BD%BF%E7%94%A8 传统方式 pojo-dao(连接mybatis,配置mapper.xml文件)- service - contro ...
分类:
其他好文 时间:
2021-04-23 11:56:15
阅读次数:
0
str 用合理的方式转换为字符串 print(str("hello,\nworld!")) 'hello, world!' repr 用合法的python表达式表示 print(repr("hello,\nworld!"))'hello,\nworld!' 长字符串 要表示很长的字符串可以用三引号( ...
分类:
编程语言 时间:
2021-04-22 16:36:02
阅读次数:
0
首发于Enaium的个人博客 不用XML只用注解 首先需要创建6个注解 SQL用于输入SQL语句 @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface SQL { String[] valu ...
分类:
其他好文 时间:
2021-04-22 16:14:47
阅读次数:
0
RabbitMQ主要实现消息推送和消费 用springboot实现消息推送 1. 新建springboot项目 通过idea,创建一个springboot默认项目,在pom.xml中添加如下依赖。 <dependency> <groupId>org.springframework.boot</gro ...
分类:
编程语言 时间:
2021-04-22 16:11:55
阅读次数:
0
从 SAP Fiori Elements 实现源代码中的 SmartTable.xml 能看出,ListReport 类型的 SAP Fiori Elements 应用,其表格类型包含 4 种: AnalyticalTable TreeTable GridTable ResponsiveTable ...
分类:
其他好文 时间:
2021-04-22 16:04:08
阅读次数:
0
一、常见接口及工具 1、webService接口:走soap协议通过http传输,请求报文和返回报文都是xml格式的,我们在测试的时候都用通过工具才能进行调用,测试。可以使用的工具有SoapUI、jmeter、loadrunner等; 2、http api接口:走http协议,通过路径来区分调用的方 ...
分类:
Web程序 时间:
2021-04-22 15:57:05
阅读次数:
0