项目中用到的一些特殊字符和图标: html部分: <div class="loading">加载中</div> css部分: .loading{ font-size:16px; color:#333; display:inline-block; } .loading:after{ display: ...
分类:
其他好文 时间:
2020-05-19 10:55:31
阅读次数:
56
游标主要是用于循环遍历 alter TRIGGER [dbo].[z_area_service_provider]ON [dbo].[z_area]AFTER UPDATEASdeclare @id varchar(50)declare @update_name varchar(255)declar ...
分类:
数据库 时间:
2020-05-18 22:44:14
阅读次数:
87
报错信息: ERROR Error: ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: 'null: 8'. Current value: ...
分类:
其他好文 时间:
2020-05-18 19:00:31
阅读次数:
94
Python Programming def insertion_sort(A): print('Before: ',A) for j in range(1,len(A)): print('Step ', j) key = A[j] i = j - 1 print(111, i, j, A[i], ...
分类:
编程语言 时间:
2020-05-18 14:41:24
阅读次数:
53
CSS 伪类用于向某些选择器添加特殊的效果,而CSS引入伪类和伪元素的概念是为了实现基于文档树之外的信息的格式化。这里讲总结关于css伪类和伪元素的相关使用 伪元素 :before/:before 在某个元素之前插入一些内容; ::after/:after 在某个元素之后插入一些内容; ::firs ...
分类:
Web程序 时间:
2020-05-17 19:15:58
阅读次数:
62
jquery是一个平常比较喜欢用的js框架,因为上手比较简单吧,哈哈,下面呢,就介绍一下Jquery中如何添加元素。jquery添加元素一共有四个语句,分别是append(),prepend(),after(),before() append的用法这个方法的意思是在选中目标的结尾插入内容。举个例子: ...
分类:
移动开发 时间:
2020-05-17 14:49:10
阅读次数:
74
转自:https://engineering.shopify.com/blogs/engineering/how-fix-slow-code-ruby At Shopify, we believe in highly aligned, loosely coupled teams to help us ...
分类:
其他好文 时间:
2020-05-16 11:02:03
阅读次数:
62
条件变量(Condition Variable) CV有两个问题值得讨论: 为什么有了mutex,仍需要cond cond为什么一定要配合mutex使用 为什么有了mutex,仍需要cond mutex与cond的适用场景并不同,mutex是控制shared resource在任一时刻只能由一个线程 ...
分类:
系统相关 时间:
2020-05-16 00:17:07
阅读次数:
95
1, 查看centos版本 [root@localhost bin]# cat /etc/redhat-release CentOS Linux release 7.7.1908 (Core) 2, redis版本 [root@localhost bin]# redis-server -v Redi ...
分类:
其他好文 时间:
2020-05-15 13:45:09
阅读次数:
69
In an alien language, surprisingly they also use English lowercase letters, but possibly in a different order. The order of the alphabet is some permu ...
分类:
其他好文 时间:
2020-05-15 13:37:25
阅读次数:
61