ES6新增了一些字符串方法以及一些数组方法,使数组跟字符串的操作都变得更方便快速。其中字符串新增的方法有includes(),startWith(),endsWith(),repeat()。数组新增的方法有form(),find(),findIndex()。 接下来我们一个个去看它们的用法: inc ...
分类:
其他好文 时间:
2021-05-24 17:06:50
阅读次数:
0
一.GridView 在控制器 public function actionIndex() { $query = User::find(); $pages = new Pagination(['totalCount' =>$query->count()]); $dataProvider = new ...
分类:
其他好文 时间:
2021-05-24 16:31:36
阅读次数:
0
Linux 指令 & 快捷键 指令 date 时间 cal 日历 df 磁盘状态 free 内存状态 exit 退出会话 pwd 显示工作目录 ls ${paths} 显示文件列表 ls -a 显示隐藏文件 ls -l 长模式输出 ls -t 根据修改时间倒序排序 ls -r 翻转结果顺序 ls - ...
分类:
系统相关 时间:
2021-05-24 16:23:20
阅读次数:
0
Maven测试Mybatis出现Could not find resource报错 1.注意Mybatis核心文件的编写 官网 <mappers> <mapper resource="org/mybatis/example/BlogMapper.xml"/> </mappers> 改写成自己 <ma ...
分类:
其他好文 时间:
2021-05-24 16:01:13
阅读次数:
0
一、安装Eigen库 卸载老版本的Eigen 查找老版本 sudo updatedb locate eigen3 删除老版本文件 将列举出来了文件删除,筛选条件(必删除项)为: /usr/include/eigen3 /usr/lib/cmake/eigen3 /usr/share/doc/libe ...
分类:
其他好文 时间:
2021-05-24 15:39:34
阅读次数:
0
Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are supposed to tell if a given s ...
分类:
其他好文 时间:
2021-05-24 13:43:08
阅读次数:
0
The main working components of the hammer crusher are hammer and rotor, which has great influence to the hammer crusher. ...
分类:
其他好文 时间:
2021-05-24 13:30:28
阅读次数:
0
locate:判断字符串(string)中是否包含另一个字符串(subStr) 函数返回subStr在string中出现的位置 一、使用方法 locate(subStr,string) > 0 二、功能类似函数 POSITION(substr IN str) 函数返回字符串中第一次出现的子字符串的位 ...
分类:
数据库 时间:
2021-05-24 13:28:48
阅读次数:
0
Document对象 通过Selenium获取元素属性.注释:Selenium获取元素属性,只能获取属性,不能修改属性值 1 # 通过Selenium获取元素属性 2 #将定位赋值给el 3 el = driver.find_element_by_xpath('//*[@id="ai-topsear ...
分类:
Web程序 时间:
2021-05-24 13:15:21
阅读次数:
0