码迷,mamicode.com
首页 >  
搜索关键字:variabledeclaratorid expected after    ( 7109个结果
select input 默认样式修改
1、select select { /*Chrome和Firefox里面的边框是不一样的,所以复写了一下*/ border: none; outline: none; background: none; /*很关键:将默认的select选择框样式清除*/ appearance: none; -moz ...
分类:其他好文   时间:2020-05-28 16:24:01    阅读次数:249
DjangoORM常见问题及解决办法
1.Django默认支持sqlite数据库 DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } 若要建立MySQL数据 ...
分类:其他好文   时间:2020-05-27 12:16:42    阅读次数:79
设置元素等待
隐式等待 driver.implicitly_wait(10) 默认参数的单位为秒,本例中设置等待时长为10秒。当脚本执行到某个元素定位时,如果元素可以定位,则继续执行; 如果元素定位不到,则它将以轮询的方式(0.5s)不断地判断元素是否被定位到。假设在第6秒定位到了元素则继续执行,若直到超出设置时 ...
分类:其他好文   时间:2020-05-26 18:39:57    阅读次数:76
python3:unexpected indent?indent expected?autopep8!
unexpected indent 实在是无法忍受 Win键(就是windows图标那个键)+R 呼出CMD命令行工具(powershell也行): linux+mac一样呼出终端工具 在Pycharm的tools中添加autopep8 File Settings (快捷键Ctrl + Alt + ...
分类:编程语言   时间:2020-05-24 10:10:26    阅读次数:73
CSS实现漂亮的小水球效果
先看效果图: 代码: 参考视频:https://www.bilibili.com/video/BV1nV411d7Q2 ...
分类:Web程序   时间:2020-05-24 09:22:19    阅读次数:117
Mybatis实现插入数据的时候将主键赋值给对象的两种方法
<insert id="insertCustomer2" parameterType="Customer"> /* order="AFTER"表示在下面的插入语句执行之后在执行 */ <selectKey keyColumn="cust_id" order="AFTER" keyProperty=" ...
分类:其他好文   时间:2020-05-23 20:38:04    阅读次数:98
C++ new与定位new运算符
new 初始化:括号内加初始值 int *pi = new int (6) // C++98 struct where {double x; double y; double z}; where * one = new where {2.5, 5.3, 7.2}; // C++11 以下为定位 ne ...
分类:编程语言   时间:2020-05-22 21:30:15    阅读次数:116
[译] Houdini:也许是你未曾听过的最振奋人心的 CSS 进化
原文链接:Houdini: Maybe The Most Exciting Development In CSS You’ve Never Heard Of更多译文将陆续推出,欢迎点赞+收藏+关注我的专栏,未完待续…… 你是否曾经想要使用一些特别的CSS特性,却因为未曾得到所有浏览器的支持而选择放弃 ...
分类:Web程序   时间:2020-05-22 21:22:46    阅读次数:76
go tip
在有很多的if-then-else语句的情况下,go语言可以写成: package main import ( "fmt" "time" ) func main() { t := time.Now() switch true{ case t.Hour() < 12: fmt.Println("Goo ...
分类:其他好文   时间:2020-05-22 17:22:15    阅读次数:63
Zookeeper:JavaApi更新、删除、读取节点
1.更新 同步方式: /** * 三个参数 * the path of the node * the data to set * the expected matching version */ Stat stat = zooKeeper.setData("/set/node1", "NODE1". ...
分类:编程语言   时间:2020-05-22 12:53:26    阅读次数:93
7109条   上一页 1 ... 34 35 36 37 38 ... 711 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!