本例子是react,scss;要牢记一定要在最外层声明!!!再就是本身api也可以更改一些,但是作用不大~ 效果图: :global(.am-picker-popup-header){ height: 60px; } :global(.am-picker-popup-item){ font-size ...
分类:
其他好文 时间:
2021-02-05 10:57:59
阅读次数:
0
#!/bin/sh # 遍历仓库里的 commit log, 替换author git filter-branch --env-filter ' an="$GIT_AUTHOR_NAME" am="$GIT_AUTHOR_EMAIL" cn="$GIT_COMMITTER_NAME" cm="$GI ...
分类:
其他好文 时间:
2021-01-29 12:22:43
阅读次数:
0
样例输入 I am a student 样例输出 student 1 #include <stdio.h> 2 #include <string.h> 3 int main() 4 { 5 char a[100005], b[100005]; 6 int i, num = 0; 7 while (s ...
分类:
其他好文 时间:
2021-01-29 12:05:24
阅读次数:
0
编写程序,读入一行英文(只包含字母和空格,单词间以单个空格分隔),将所有单词的顺序倒排并输出,依然以单个空格分隔。 输入格式 输入为一个字符串(字符串长度至多为100)。 输出格式 输出为按要求排序后的字符串。 输入样例: I am a student 输出样例: student a am I//巧 ...
分类:
其他好文 时间:
2021-01-13 11:25:11
阅读次数:
0
题目:已知$a,b,c>0$,$a^2+b^2+c^2=3$,求证:$\frac{a}{1+2a^3}+\frac{b}{1+2b^3}+\frac{c}{1+2c^3}\leq \frac{a+b+c}{1+2abc}.$ 证明: 由已知及AM-GM不等式可得$3=a^2+b^2+c^2\geq ...
分类:
其他好文 时间:
2020-12-31 12:13:54
阅读次数:
0
很多API并不是真正的实现了RESTful,而应该叫做RPC (Remote Procedure Call 远程过程调用),Roy Fielding曾经提到了它们的区别,原文如下: I am getting frustrated by the number of people calling any ...
Dear Prof. X I am XX, a Ph.D. candidate in the XX group of YY University, which is under the supervision of Prof. ZZ.I am about to finish my Ph.D. stu ...
分类:
其他好文 时间:
2020-12-23 12:24:19
阅读次数:
0
As some data error, i am going to update the Project Number filed on PA_TRANSACTION_INTERFACE_ALL Table. But once i applied the SQL, there will appear ...
分类:
其他好文 时间:
2020-12-22 12:34:26
阅读次数:
0
问题1:ES6中的class 与 ES5中function的关系 ES6 中: class Person { constructor(name) { this.name = name; } sayHello() { return 'hello, I am ' + this.name; } } var ...
分类:
Web程序 时间:
2020-11-23 12:12:24
阅读次数:
11
如果直接写 select * from user where id <> 217;mybatis就会报语法错误,<>特殊字符需要转义 如下 select * from user where id <> 217; 使用Mybatis的时候,特殊字符需进行转义,如<> <>&am ...
分类:
数据库 时间:
2020-11-21 12:07:00
阅读次数:
13