摘要: 通过编辑~/.termux/termux.properties配置 extra-keys = [\ ['ESC', 'CTRL', '&', '$', '!', '%', '<', '>'], \ ['APOSTROPHE', 'QUOTE', ':', '`', '+', '-', '(', ') 阅读全文
posted @ 2020-11-22 23:46 LiuWango 阅读(2178) 评论(0) 推荐(0) 编辑
摘要: 不缓存当前页面 <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> 不缓存 阅读全文
posted @ 2020-11-22 23:36 LiuWango 阅读(246) 评论(0) 推荐(0) 编辑
摘要: Termux安装配置设置参见: 国光:Termux高级终端使用配置教程 搭建FTP服务器参见: Termux安装使用FTP服务器 阅读全文
posted @ 2020-11-22 23:35 LiuWango 阅读(3361) 评论(0) 推荐(0) 编辑
摘要: 1. 生成器函数 1.1 定义生成器函数 // 在关键字function后面添加 * 定义生成器函数 function* newGenerator() { // ... // 在生成器内部使用yield生成独立的值 yield "One"; yield "Two"; // ... } // 调用生成 阅读全文
posted @ 2020-11-22 17:40 LiuWango 阅读(155) 评论(0) 推荐(0) 编辑