1:找个容器: .container { display: flex | inline-flex; //可以有两种取值:块元素,行内元素 } 2:容器的设置: .container { flex-direction: row | row-reverse | column | column-rever ...
分类:
其他好文 时间:
2020-06-29 13:17:23
阅读次数:
63
哈喽,大家好!在日常工作中,工作表经常会被多人编辑,为此,我们往往需要为不同的人设置不同的查看权限,以实现工作表的分级保密。下面分享一种用VBA设置权限的方法,它拥有高逼格的用户登录界面,以及完善的分级保密机制,赶紧来看看吧! 提到“多人运动”,你一定以为小编一言不合就开车。你错了!作为一个正经的E ...
分类:
其他好文 时间:
2020-06-29 09:23:35
阅读次数:
87
combineCell(list) { for (var field in list[0]) { // 获取数据中的字段,也就是table中的column,只需要取其中一条记录的就可以了 var k = 0;// 定义数据list的index while (k < list.length) { li ...
分类:
其他好文 时间:
2020-06-28 15:21:57
阅读次数:
56
新建的用户表中,昵称需要支持emoji,再向表中插入数据时,发生异常: java.sql.SQLException: Incorrect string value: '\xF0\x9F\x98\x83\xF0\x9F...' for column 产生问题原因 新建的用户表,使用的是utf8字符集编 ...
分类:
数据库 时间:
2020-06-28 12:29:09
阅读次数:
77
import mysqlconnector from sqlalchemy import create_engine from sqlalchemy.ext.declarative import declarative_base from sqlalchemy import Column,Integ ...
分类:
数据库 时间:
2020-06-27 16:10:42
阅读次数:
97
效果如图: 根据下拉框fieldTypeComboBox,控制其他控件的显隐 关键代码 <ComboBox Grid.Column="1" Grid.Row="2" DataContext="{Binding FieldTypeEnumInfos}" ItemsSource="{Binding }" ...
分类:
其他好文 时间:
2020-06-27 14:40:42
阅读次数:
61
Sql 中使用case when then 判断某字段是否为null,和判断是否为 字符 或 数字 时的写法不一样: 如果不注意,很容易搞错: 错误方法: (zhaohao 已实践,的确是不行。虽然不会报错,但是结果不对的) CASE columnName WHEN null THEN 0 ELSE ...
分类:
其他好文 时间:
2020-06-27 00:01:01
阅读次数:
159
a=['序号',1,2,3,4,5] b=['成本',20,45,12,34,67] import pandas c=pandas.Series(a) d=pandas.Series(b) e=pandas.DataFrame(list(zip(c,d))) print(e) 0 1 0 序号 成本 ...
分类:
其他好文 时间:
2020-06-26 18:03:16
阅读次数:
42
C# 实现TXT文档转 代码: public DataTable TXTToDataTable(string fileName, string columnName) { DataTable dt = new DataTable(); FileStream fs = new FileStream(f ...
DDL数据定义 4.1 创建数据库 CREATE DATABASE [IF NOT EXISTS] database_name [COMMENT database_comment] [LOCATION hdfs_path] [WITH DBPROPERTIES (property_name=prop ...
分类:
其他好文 时间:
2020-06-26 16:46:06
阅读次数:
72