/** * 隐藏手机号码 * @param phone 手机号码 * @param startIndex 从第几个数字开始隐藏 * @param endIndex 隐藏至第几个数字 */ function hiddenPhone(phone, startIndex = 4, endIndex = 7 ...
分类:
移动开发 时间:
2020-02-09 16:44:15
阅读次数:
82
1.插入语句 + 语法: + + + 注意事项: + 表中设有非空约束的字段必须赋值 + 列名个数与顺序需要与值对应 + 第一种方式可以同时插入多条值,第二种不可以 + 省略列名时,默认所有字段都赋值 + 示例 + + + + 2.删除语句 + 语法: + 示例 + + boyfriend_id i ...
分类:
数据库 时间:
2020-02-07 22:26:43
阅读次数:
98
1.项目目录 2.Javabean(省略常见方法) public class Person { private int id; private String name; private int age; private String phone; 3.新建Spring的配置文件:applicatio ...
分类:
编程语言 时间:
2020-02-07 20:44:05
阅读次数:
62
1 """ 2 Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. 3 A mapping of d ...
分类:
其他好文 时间:
2020-02-06 16:44:30
阅读次数:
70
1 implode 使用一个字符串将数组变成字符串 1 2 3 4 5 6 7 8 9 10 11 <br><?php $array = array('lastname', 'email', 'phone'); $comma_separated = implode(",", $array); ech ...
分类:
编程语言 时间:
2020-02-02 19:47:43
阅读次数:
55
就Trie的插入和查找 //注意此题是找到前缀输出no,否则输出yes #include<bits/stdc++.h> using namespace std; int n,t,flag,cnt,trie[110001][21]; int ed[110001],vis[110001]; char c ...
分类:
其他好文 时间:
2020-02-02 17:59:17
阅读次数:
73
text:显示的内容 textSize:文本的大小 textColor:文本的颜色 visibility:可见性 默认可见,invisible:表示不可见,但对控件的显示区域做了保留 gone:隐藏控件当前控件显示的区域不做保留 autoLink:表示当前TextView的链接类型,值为“phone ...
分类:
其他好文 时间:
2020-02-02 13:51:48
阅读次数:
71
Checklist 复选框列表,依赖 cell 组件。 引入 import { Checklist } from 'mint-ui'; Vue.component(Checklist.name, Checklist); 例子 基本用法 <mt-checklist title="复选框列表" v-mo ...
分类:
其他好文 时间:
2020-02-01 15:57:11
阅读次数:
80
A long-distance telephone company charges its customers by the following rules: Making a long-distance call costs a certain amount per minute, dependi ...
分类:
编程语言 时间:
2020-01-31 17:22:48
阅读次数:
139
前台 vue-resource请求接口 addCustomer(e){ if (!this.customer.name || !this.customer.phone || !this.customer.email) { // console.log('请添加对应信息'); this.alert = ...
分类:
其他好文 时间:
2020-01-30 19:13:58
阅读次数:
156