在 vue-cli 创建的项目中,用默认的 webpack 配置对项目打包后,发现 css 文件中样式的前缀有所缺失,例如:flex 这个应该有前缀的属性却没有(display:-webkit-flex; && -webkit-flex:1),导致样式在 iphone 6s plus 上出现了兼容问 ...
分类:
Web程序 时间:
2018-05-29 12:30:23
阅读次数:
1268
Given a non-empty array of digits representing a non-negative integer, plus one to the integer. The digits are stored such that the most significant d ...
分类:
其他好文 时间:
2018-05-29 01:49:39
阅读次数:
109
题目描述: Given a non-empty array of digits representing a non-negative integer, plus one to the integer. The digits are stored such that the most signifi ...
分类:
其他好文 时间:
2018-05-28 22:43:08
阅读次数:
244
ap=AspenPlus() ap.open_case(r'pfdtut.bkp') ap.visible=1 print(ap.print_streams()) print(ap.print_blocks()) # ap.run() print("done") # type 'pip instal ...
分类:
编程语言 时间:
2018-05-28 16:53:15
阅读次数:
710
1. 使用MyBatisPlus AutoGenrator注意数据库表字段最好用下划线分格,生成的Bean类才会是驼峰式的 2. 在/src/main/resources中加入Mybatis-Plus.properties配置文件 3. Java代码中直接运行 ...
分类:
其他好文 时间:
2018-05-28 00:56:16
阅读次数:
729
一、MyBatis-plus有什么特色 1.代码生成 2.条件构造器 对我而言,主要的目的是使用它强大的条件构建器。 二、快速使用步骤 1. 添加pom文件依赖 注意:mybatis-plus会自动维护mybatis以及mybatis-spring的依赖,所以不需要引入后两者,避免发生版本冲突。 2 ...
分类:
其他好文 时间:
2018-05-28 00:53:36
阅读次数:
3661
git通过git clone下载github上的资源到机器上,结果出现如题所示的错误。 [plain] view plain copy [root@server data]# git clone https://github.com/pingcap/tidb-docker-compose.git C ...
分类:
数据库 时间:
2018-05-26 22:17:46
阅读次数:
2334
1、 #include <iostream> int main(int argc, char* argv[]){ char firstName[50] = {0}; char lastName[50] = {0}; char grade; int age; std::cout << "What is ...
分类:
编程语言 时间:
2018-05-26 00:41:33
阅读次数:
208
from urllib import parse#url编码url = 'http://www.baidu.com?query = python基础教程'url_str = parse.quote_plus(url) #quote 跟quote_plus一样的,后者更牛逼,把汉字变成url编码pri... ...
分类:
Web程序 时间:
2018-05-25 23:30:07
阅读次数:
271
from urllib import parseurl='http://www.baidu.com?qurey=python基础教程 @@@'# url_str=parse.quote_plus(url) #url编码print(parse.quote_plus(url))from urllib i ...
分类:
其他好文 时间:
2018-05-25 21:07:32
阅读次数:
205