打赏
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 54 下一页
摘要: 1.wget直接下载: wget https://img.cdn.apipost.cn/download/linux/apipost_x64.deb //wget https://img.cdn.apipost.cn/download/linux/ApiPost linux x64.tar.xz 2 阅读全文
posted @ 2020-04-08 17:09 苍山落暮 阅读(1583) 评论(0) 推荐(0) 编辑
摘要: 1.chrome安装 wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - sudo apt-get update sudo apt-get install google-chrome- 阅读全文
posted @ 2020-04-07 16:30 苍山落暮 阅读(776) 评论(0) 推荐(0) 编辑
摘要: harbon下载 wget https://storage.googleapis.com/harbor releases/harbor offline installer latest.tgz //百度网盘下载 https://pan.baidu.com/s/1Da5NuhNVRmmzdtjEJLt 阅读全文
posted @ 2020-04-03 15:56 苍山落暮 阅读(193) 评论(0) 推荐(0) 编辑
摘要: go应用 docker部署 1.创建hello.go 2.设置go编译的环境 3.编写Dockerfile 方法一:这样出来的镜像文件较大。 方法二:最小化构建(推荐) 4.构建镜像 5.运行容器 6.Q:我们需要将 Golang 容器和 Mysql 容器关联起来,那么我们需要怎么做呢? A:增加命 阅读全文
posted @ 2020-04-03 11:47 苍山落暮 阅读(1362) 评论(0) 推荐(0) 编辑
摘要: go get 使用 go get 命令能正常工作,你必须确保安装了合适的源码管理工具,并同时把这些命令加入你的 PATH 中。其实 go get 支持自定义域名的功能。 go get 使用时的附加参数 相关链接 http://c.biancheng.net/view/123.html 阅读全文
posted @ 2020-04-02 16:53 苍山落暮 阅读(1637) 评论(0) 推荐(0) 编辑
摘要: 1.beego 支持多语言 配置文件如下: 使用如下: 2.mysql数据库初始化 3.查询结构到struct & map 4.QueryBuilder使用 5.关联删除 on_delete 设置对应的 rel 关系删除时,如何处理关系字段。 cascade 级联删除(默认值) set_null 设 阅读全文
posted @ 2020-04-02 13:56 苍山落暮 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: 表单验证 import ( "log" "strings" "github.com/astaxie/beego/validation" ) // 验证函数写在 "valid" tag 的标签里 // 各个函数之间用分号 ";" 分隔,分号后面可以有空格 // 参数用括号 "()" 括起来,多个参数之 阅读全文
posted @ 2020-04-02 13:54 苍山落暮 阅读(246) 评论(0) 推荐(0) 编辑
摘要: Beego Session使用 import ( "github.com/astaxie/beego/session" ) // 初始化一个全局的变量用来存储 session 控制器 var globalSessions session.Manager //入口函数中初始化数据 func init( 阅读全文
posted @ 2020-04-02 13:53 苍山落暮 阅读(810) 评论(0) 推荐(0) 编辑
摘要: 1.beego api doc 对于新建项目,使用api文档,可使用以下命令 对于已经存在的项目,需要增加swagger doc,可按以下步骤来: (1.)修改配置app.conf中 (2.)main函数中新增 (3.)router.go中新增 在行首新增 修改router.go中init函数,修改 阅读全文
posted @ 2020-04-01 15:49 苍山落暮 阅读(686) 评论(0) 推荐(0) 编辑
摘要: 1. jwt token的生成和解析 结果输出: 阅读全文
posted @ 2020-04-01 13:51 苍山落暮 阅读(1382) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 54 下一页