# 浏览器请求动态 web 页面过程 # WSGI WSGI:Web Server Gateway Interface。 WSGI 接口定义非常简单,它只要求 Web 开发者实现一个函数,就可以响应 HTTP 请求。 123def application(environ, start_response): start_response('200 OK', [('Content-Type', 'text/html')]) return [b'Hello,...

# ElementTree vs SAX and DOM SAX (simple API for XML) It functions as a stream parser, with an event-driven API. DOM (Document Object Model) It reads the XML into memory and converts it to objects that can be accessed with Python. ElementTree ElementTree is much easier to use, because it represents...

# GraphQL 特点 精确请求需要的数据,不多不少。例如: account 中有 name, sex, age 可以只取得需要的字段 name。 可以只用一个请求获取多个资源。 描述所有可能的类型系统,方便维护,可以根据需求平滑演进,添加或隐藏字段。 # GraphQL 与 restful 区别 restful 一个接口只能返回一个资源,graphql 一次可以获得多个资源 restful 使用不同 url 来区分资源,graphql 使用类型区分资源。 # GraphQL 参数类型 基本类型: String, Int, Float, Boolean, ID;可以在 schema...

# 基本用法 # Context 对象 Context 对象,表示一次对话的上下文(包括 HTTP 请求和 HTTP 回复) 123456789const Koa = require('koa')const app = new Koa()const main = ctx => { ctx.response.body = 'Hello World'}app.use(main)app.listen(3000) # HTTP Response 的类型 Koa 默认的返回类型是...

1234567891011121314151617181920212223242526272829303132Number.prototype.add = function (x) { return this + x;};Number.prototype.subtract = function (x) { return this - x;};Number.prototype.iterate = function () { var result = []; for (var i = 0; i...

javascript 对象创建方式 # prototype 12345678910function Cat() { this.name = "mm";}Cat.prototype.makeSound = function () { console.log("o(∩_∩)o");};var cat = new Cat();cat.makeSound(); #...

# IIFE Immediately Invoked Function Expression, 立即执行函数表达式。 123(function () { console.log("IIFE");})(); # closure 闭包:外部函数返回后,内部函数仍然可以访问外部函数变量。 123456789101112131415function outer() { let n = 0; function inner() { n += 1; console.log(n); }...

# say 基本用法:say hello 查看播音员名单:say -v ‘?’ 指定播音员:say -v Ting-Ting 你好 # dictionary 鼠标悬浮在单词上方按 ctrl + command + d 查询单词 配置翻译可以在 dictionary.app 中设定 # iina 播放器 # the unarchiver 解压软件 # calculator C: 清除上一步操作 AC: 清除所有操作 配置可以在 calculator.app 中设定 # voice memos 录音软件 # finder 目录结构 / 根目录 ​ /Application ​ /Library ​...

# Promise # resolve,reject 12345678910111213141516171819202122232425function test(resolve, reject) { var timeOut = Math.random() * 2 console.log('timeOut: ' + timeOut) setTimeout(function() { if (timeOut < 1) {...

# jquery 12345678910111213141516171819202122232425262728293031323334353637383940// 基本用法无参数get请求$.ajax({ url:"demo_test.txt", success:function(result){ console.log(result); }}// 需指定方法则增加method字段$.ajax({...