接入github OAuth时序图 github oauth api地址 https://developer.github.com/apps/building-oauth-apps/authorizing-oauth-apps/ 1. 使用client_id scope等获取code。 浏览器输入: ...
分类:
移动开发 时间:
2020-01-10 15:34:53
阅读次数:
101
MongoDB 2.2 引入一个新特性–TTL 集合,TTL集合支持失效时间设置,或者在某个特定时间,集合自动清除超时文档,者用来保存一个诸如session会话信息的时候非常有用。 如果想使用TTL集合,用用到 expireAfterSeconds 选项 mongo官网使用文档设置方法: Expir ...
分类:
数据库 时间:
2020-01-10 10:23:03
阅读次数:
264
1. 架构 在Android中,audio的架构如下图 ...
分类:
移动开发 时间:
2020-01-09 22:30:23
阅读次数:
68
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 2 3 <embed src="D:\音乐\G.E.M.邓紫棋 - 龙卷风.mp3 " width="0" height="0" type="audio/mpeg loo ...
分类:
其他好文 时间:
2020-01-08 21:12:40
阅读次数:
123
点击左上角主菜单按钮,点击【保存】菜单,即可保存当前的所有效果参数。 【另存为】菜单,则是把当前参数另存一个名称,然后通过【切换效果】菜单,实现效果的切换。 独立保存单个音轨的效果 点击音轨对应的【菜单】按钮,然后点击【另存为】菜单 ...
分类:
其他好文 时间:
2020-01-08 20:37:59
阅读次数:
93
Monster Audio支持的操作系统: windows 7 64bit 至 windows 10 64bit 受支持的VST: Vst 64bit、Vst3 64bit 受支持的声卡驱动: ASIO 安装包下载地址: http://www.jacktan.cn/setup.zip 注意事项: 安 ...
分类:
其他好文 时间:
2020-01-08 10:50:16
阅读次数:
1076
macname@bogon testenv3.7 % cat file.json { "code": 200, "msg": "请求成功", "data": { "username": "abc", "mobile": "18611751121" }, "task":[{ "username": "... ...
分类:
编程语言 时间:
2020-01-07 18:25:04
阅读次数:
109
macname@bogon ~ % echo '{"json": "obj"}' | python3.7 -m json.tool { "json": "obj" } ...
分类:
编程语言 时间:
2020-01-07 18:05:17
阅读次数:
74
import json a={'4': 5, '6': 7} print(json.dumps(a, sort_keys=True, indent=4)) 输出 { "4": 5, "6": 7 } ...
分类:
编程语言 时间:
2020-01-07 17:51:59
阅读次数:
162
Access-Control-Allow-Origin为*的时候,前端设置withCredentials:true,将不能发送cookie到服务端。 此外,前端要发送cookie到服务端,还要 XMLHttpRequest 的 withCredentials 标志设置为 true,且 服务器端的响应 ...
分类:
数据库 时间:
2020-01-06 12:53:03
阅读次数:
279