1、pages:页面 "pages": [ "pages/index/index", "pages/logs/logs" ], 2、windows:全局的默认窗口表现,用于设置小程序的状态栏、导航条、标题、窗口背景色。 (1)导航栏颜色: "window": { "backgroundTextSty ...
分类:
微信 时间:
2020-06-22 13:06:06
阅读次数:
116
Mac 如何安装字体? Win7如何安装字体? Win10如何安装字体? 【xp,win7系统 字体安装教程】http://jingyan.baidu.com/article/a501d80cd1a3f9ec630f5eb4.html 【win10系统 字体安装教程】http://www.cr173... ...
分类:
系统相关 时间:
2020-06-22 11:01:46
阅读次数:
69
声明:个人备考使用,仅供参考。 目录 第一章 绪论(没写) 第二章 线性表 ...
分类:
其他好文 时间:
2020-06-22 02:04:32
阅读次数:
65
?一、char类型 1.char类型存储的是整数而不是字符,例如:在ASCII中,65代表A; 2.标准ASCII范围为0-127;商用统一编码Unicode创建一个全球字符合集; 3.注意点:C语言把1字节定义为char类型占用的位数,因此在16位,32位,64位系统中都是可以用char类型的。有 ...
分类:
其他好文 时间:
2020-06-22 01:00:36
阅读次数:
108
去重的配置: DUPEFILTER_KEY = 'dupefilter:%(timestamp)s' DUPEFILTER_CLASS = "scrapy_redis.dupefilter.RFPDupeFilter" 调度器配置: SCHEDULER = "scrapy_redis.schedul ...
分类:
其他好文 时间:
2020-06-21 19:57:44
阅读次数:
53
Given two integers dividend and divisor, divide two integers without using multiplication, division and mod operator. Return the quotient after dividi ...
分类:
其他好文 时间:
2020-06-21 19:56:30
阅读次数:
47
如果想从头学起Cypress,可以看下面的系列文章哦 https://www.cnblogs.com/poloyy/category/1768839.html 作用 在浏览器历史记录中,访问前一个或后一个 URL 语法格式 cy.go(direction) cy.go(direction, opti ...
分类:
其他好文 时间:
2020-06-21 19:45:19
阅读次数:
66
一、Algorithm 【leetcode】009-Palindrome Number 二、Review Linux is ready for the end of time The Y2K bug is back, causing headaches for developers again 三、 ...
分类:
其他好文 时间:
2020-06-21 17:52:07
阅读次数:
49
整理自极客时间MySQL45讲 根据加锁的范围,MySQL里面的锁大致可以分成全局锁、表级锁和行锁三类。 全局锁 全局锁就是对整个数据库实例加锁。MySQL提供了一个加全局读锁的方法,命令是 Flush tables with read lock (FTWRL)。当你需要让整个库处于只读状态的时候, ...
分类:
数据库 时间:
2020-06-21 16:16:02
阅读次数:
73
BAT FOR循环 https://www.cnblogs.com/adforce/p/3282591.html 在cmd窗口中: FOR %variable IN (set) DO command [command-parameters] 在批处理文件中: FOR %%variable IN (s ...
分类:
其他好文 时间:
2020-06-21 16:04:25
阅读次数:
82