Properties listView: ListView refreshing: bool Signals refresh() Methods endRefresh() Detailed Description 此组件通过添加入ListView实现下拉刷新功能. 一旦用户将列表下拉, 直到超出某个 ...
分类:
其他好文 时间:
2020-07-04 22:29:56
阅读次数:
88
方法一:默认情况下Ttp6不会显示错误信息,在开发环境下想要查看错误信息需要将Config目录下的app.php文件的show_error_msg改成true 但是这样显示的信息也不够完整, 要看到更多信息需要我们开启DEBUG,tp6模仿了Laravel,我们使用composer下载完tp框架后可 ...
分类:
其他好文 时间:
2020-07-04 20:56:33
阅读次数:
190
安装环境:CentOS Linux release 7.2.1511 (Core) 1.准备工作: 下载confluence6.7.1:wget https://downloads.atlassian.com/software/confluence/downloads/atlassian-confl ...
分类:
其他好文 时间:
2020-07-04 20:45:14
阅读次数:
74
1.下载源: # wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 2.安装包 # sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm 添加mysql 用户 ...
分类:
数据库 时间:
2020-07-04 20:44:44
阅读次数:
118
pom.xml文件报错 { Failure to transfer org.springframework.boot:spring-boot-maven-plugin:pom:2.1.0.RELEASE from http://maven.aliyun.com/nexus/content/group ...
分类:
其他好文 时间:
2020-07-04 20:38:56
阅读次数:
61
Semaphore信号量原理 Semaphore是一个计数信号量,本质是"共享锁". Semaphore维护一个信号量许可集. 线程可以调用acquire()获得信号量的许可. 线程可以调用release()释放其持有的信号量. 使用acquire()请求获得信号量时,若信号量有可用的许可时,线程获 ...
分类:
其他好文 时间:
2020-07-04 18:45:22
阅读次数:
80
本地调试时模拟服务器使用url方式访问静态文件(不建议使用) 当我们在开发django应用时如果设置了 DEBUG = True,那么django便会自动帮我们对静态文件进行路由; 但是当我们设置DEBUG = False后,这一功能便没有了,此时静态文件就会出现加载失败的情况,想要让静态文件正常显 ...
分类:
Web程序 时间:
2020-07-04 15:34:46
阅读次数:
69
Visual Studio Code Homepage Free. Built on open source. Runs everywhere Tips VsCode折叠代码块快捷键 F1查看帮助->搜索fold vscode-chrome-debug vscode-chrome-debug Rea ...
分类:
其他好文 时间:
2020-07-04 01:47:14
阅读次数:
95
Visual Studio -VS2015 Total UnInstaller July 4, 2020 12:07 AM Release version zip Description This executable is designed to cleanup/scorch all Previe ...
分类:
其他好文 时间:
2020-07-04 01:15:35
阅读次数:
81
一、基本语法 assert expression1, ["," expression2] x, y = 1, 2 assert x == y, "not equal" # 等价于下面的语法: x, y = 1, 2 if __debug__ and not x == y: raise Asserti ...
分类:
其他好文 时间:
2020-07-03 21:34:40
阅读次数:
50