09 2018 档案

摘要:参考书籍 《SQLite 权威指南 第二版》 Windows获取SQLite 1.主页: www.sqlite.org 2.下载 Precompiled Binaries For Windows 3.设置系统环境PATH 使用 打开cmd,输入sqlite3 命令 .help 帮助 .exit 退出 阅读全文
posted @ 2018-09-30 11:45 RESTPAIN 阅读(154) 评论(0) 推荐(0) 编辑
摘要:删除文件后缀名,出现问题 import "strings" func changePath(file_path string) string { return strings.Replace(file_path, "/", "\\", -1) } 转换路径 /转换为\\ import "string 阅读全文
posted @ 2018-09-10 10:39 RESTPAIN 阅读(123) 评论(0) 推荐(0) 编辑
摘要:API REST(Representational Status Transfer) 一种软件设计风格,采用http协议,json数据格式 特点: 统一接口(Uniform Interface) 无状态(stateless) 可缓存(Cacheable) 分层(Layered System) CS模 阅读全文
posted @ 2018-09-03 08:16 RESTPAIN 阅读(117) 评论(0) 推荐(0) 编辑