上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 109 下一页
摘要: golang 编写命令行程序,需要得到外部输入参数,可使用flag包. 使用如下 file := flag.String("file", "../resource/001.mnt", "asm file, eg. 001.mnt") flag.Parse() fmt.Println(*file) 阅读全文
posted @ 2022-05-23 23:41 jiftle 阅读(79) 评论(0) 推荐(0) 编辑
摘要: CodeMirror https://codemirror.net/6/ 阅读全文
posted @ 2022-05-23 18:14 jiftle 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 概述 算符优先分析法(Operator Precedence Parse)是仿效四则运算的计算过程而构造的一种语法分析方法。算符优先分析法的关键是比较两个相继出现的终结符的优先级而决定应采取的动作。 优点:简单,有效,适合表达式的分析。 缺点:只适合于算符优先文法,是一个不大的文法类。名词解释定义: 阅读全文
posted @ 2022-05-20 00:11 jiftle 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 一、ES5中的函数定义 function add (a, b) { } // 函数表达式声明 let fn = function add(a, b) { //... } 二、ES6箭头函数(糟糕的语法设计,故意让人看不懂) 1. 参数的3种形式 let fn = () => { //.. } let 阅读全文
posted @ 2022-05-17 12:03 jiftle 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 快速开始 基础 创建 Vue 应用 模板语法 响应式基础 计算属性 类与样式绑定 条件渲染 列表渲染 事件处理 表单输入绑定 生命周期钩子 侦听器 模板 ref 组件基础 深入组件 组件注册 Props 组件事件 透传 attribute 插槽 依赖注入 异步组件 可重用性 可组合函数 自定义指令 阅读全文
posted @ 2022-05-16 15:52 jiftle 阅读(29) 评论(0) 推荐(0) 编辑
摘要: Nginx配置 首先要配置Nginx支持range标签返回,很简单添加 add_header Accept-Ranges bytes; 这一行即可 server { listen 80; server_name adksdf.com; location ~ ^/(img/|js/|css/|uplo 阅读全文
posted @ 2022-05-16 09:26 jiftle 阅读(1490) 评论(0) 推荐(0) 编辑
摘要: 背景介绍 密钥管理服务(KMS)是一套密钥管理系统, 可以针对云上数据/各端上的加密需求精心设计的密码应用服务,为您的应用提供符合各种要求的密钥服务及极简应用加解密服务,助您轻松使用密钥来加密保护敏感的数据资产。方案开发者身份 受保护数据 保护目的 解决方案网站或应用开发 证书、密钥 网站和应用会使 阅读全文
posted @ 2022-05-15 00:42 jiftle 阅读(855) 评论(0) 推荐(0) 编辑
摘要: 原文: https://www.jianshu.com/p/08524828f84b 一、页面上放置上传控件 首先借助 element-ui 搭建下页面。因为要自定义一个上传的实现,所以 el-upload 组件的 auto-upload 要设定为 false;action 为必选参数,此处可以不填 阅读全文
posted @ 2022-05-13 17:33 jiftle 阅读(635) 评论(0) 推荐(0) 编辑
摘要: 基础知识 1. Web APIs中的 FileReader (WebAPIs 可以认为是浏览器提供的API, js里可以直接使用) https://developer.mozilla.org/en-US/docs/Web/API/FileReader 2. el-upload 文件上传插件 文章或例 阅读全文
posted @ 2022-05-13 17:24 jiftle 阅读(106) 评论(0) 推荐(0) 编辑
摘要: WebHID API A Human Interface Device (HID) is a type of device that takes input from or provides output to humans. It also refers to the HID protocol, 阅读全文
posted @ 2022-05-13 17:20 jiftle 阅读(268) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 109 下一页