logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

postgres、mysql计算字段里出现某字符的次数

SELECT array_length(regexp_split_to_array(gs.gss,'ss'),1)-1 as num from table gs若有特殊字符,用\转译如下,查询 /* 和 */出现的次数不相等的记录:(*是特殊字符)SELECT * from (SELECT array_length(regexp_split_to_array(gs.gss,'/\*'),1)-1

文章图片
#mysql#数据库
数据库中字段是timestamp,java如何传值?

Mapper 中参数类型用 Datexml中接受值用TIMESTAMP:#{startTime,jdbcType=TIMESTAMP}注: xml中判断参数是否有值, 只用null就行,千万不能用字符串startTime != '' ,如下:<if test="startTime!= null">and start_time &gt;= #{startTime,jdbcType

#java#sql
vue-element更改分页样式(颜色)

默认样式:更改颜色为:css:/*带背景的分页按钮背景色begin*/.el-pagination.is-background .el-pager li:not(.disabled).active {background-color: #08C0B9;color: #FFF;}.el-pagination.is-background ....

Element-ui table去掉所有边框

el-table 加 class="customer-no-border-table"/*去掉表格单元格边框*/.customer-no-border-table th{border:none;}.customer-no-border-table td,.customer-no-border-table th.is-leaf {border:none;}/*表格最外边框*/.customer-no

element-ui table自定义斑马条纹颜色

1.el-table加:row-class-name="xxxTableRowClassName"2.methods 中加方法xxxTableRowClassName({row, rowIndex}) {if (rowIndex%2==0) {return 'statistics-warning-row';} else {return '';}},3.css中加样式.el-table__row.s

vue element 下拉框内容过长显示...鼠标悬浮显示全部

1.1. css 多选下拉框内容过长-用...代替/*下拉选择框-多选-内容过长-用...代替begin*/.el-tag.el-tag--info {background-color: #f4f4f5;border-color: #e9e9eb;color: #909399;max-width: calc(100% - 50px);/* white-space: nowrap;tex...

#css#html#javascript
vue 路由、动态路由、传参、获取参数、

1.main.js :import router from './router'2.router文件夹下建index.jsimport Vue from 'vue'import Router from 'vue-router'import Home from '@/components/Home'import DiagnosisResultData from ...

vue dialog请求页面的时候,第二次之后打开,不会查询重新请求数据

vue dialog请求页面的时候,第二次之后打开,不会查询重新请求数据,需要加v-if="dialogLookVisible"原始:<el-dialog title="查看xxx":visible.sync="dialogLookVisible" width="100%;" :close-on-click-modal='false' ><iframe...

在VUE中使用el-dialog出现z-index值很大的遮罩解决办法

在 <el-dialog中加上 :modal-append-to-body="false"

#vue.js
VUE+ElementUI 校验表单的输入框是否含有特殊字符

data() {let validateInput = (rule, value, callback) => {if (!this.checkSpecialKey(value)) {callback(new Error("不能含有特殊字符!!"));} else {callback();...

    共 29 条
  • 1
  • 2
  • 3
  • 请选择