1. vi /etc/my.cnf 2. update mysql.user set authentication_string=password('123456') where user='root' and host='localhost'; 3. FLUSH PRIVILEGES; ...
分类:
数据库 时间:
2021-04-12 12:44:01
阅读次数:
0
#### required_without不起作用,自定义一个规则代替它 想实现的效果: 两个参数二选一,只存在一个返回true,同时存在或同时不存在返回false 使用方式: $data = [ 'fid' => 1, 'path' => '/全部文件/文件夹1' ]; Validator::ma ...
分类:
其他好文 时间:
2021-04-09 12:56:58
阅读次数:
0
存在的问题:需要的编译环境没有安装配置好的话出现下面的问题: 1、error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudi ...
分类:
其他好文 时间:
2021-04-05 12:34:37
阅读次数:
0
问题:在输出测试报告的时候,一直报错TypeError: a bytes-like object is required, not 'str';意思是:类型错误,需要类似字节的对象,而不是字符串 解决:百度了一下,网友给的方法很有效 改成下面这个 运行一下,果然没有报错了 但是又出现了新的问题,生成 ...
分类:
Web程序 时间:
2021-04-02 13:08:12
阅读次数:
0
export function createRulesByForm(form = {}, rules = [ { required: true, message: '这项是必填的', trigger: 'blur' }, { required: true, message: '这项是必填的', tr ...
分类:
其他好文 时间:
2021-04-01 13:42:50
阅读次数:
0
1.Required(默认属性): 如果存在一个事务,则支持当前事务。如果没有事务,则开启一个新的事务。 2.Supports支持当前事务,如果当前没有事务,就以非事务的方式执行 3.Mandatory使用当前的事务,如果没有事务,就抛出异常 4.Requires_New新建事务,如果当前存在事务, ...
分类:
编程语言 时间:
2021-04-01 13:32:08
阅读次数:
0
采集nginx日志的时候发现从filebeat采集的json日志到elasticsearch里面都是keyword类型,导致我模糊查询部分字段的时候无法模糊匹配,所以需要将某些字段改成text类型。 filebeat.inputs: - type: log enabled: true json.ke ...
分类:
移动开发 时间:
2021-03-30 13:11:53
阅读次数:
0
Setup Check our AndroidCompile wiki page, especially for build dependencies. Here are the essential points: On Debian/Ubuntu, install the required dep ...
分类:
系统相关 时间:
2021-03-26 15:25:05
阅读次数:
0
<van-field readonly clickable name="calendar" :value="area" label="户籍区划" required placeholder="" @click="cityShow = true"> </van-field> <van-popup v-m ...
分类:
其他好文 时间:
2021-03-11 14:17:47
阅读次数:
0
效果如下: 原理:在所显示的名字前面拼一个img标签 代码如下: <van-field readonly is-link name="picker" :value="value" clearable label="选择您的还款银行" placeholder="选择银行" input-align="r ...
分类:
其他好文 时间:
2021-03-11 13:02:40
阅读次数:
0