加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
upgrade.go 910 Bytes
一键复制 编辑 原始数据 按行查看 历史
package upgrade
import (
"encoding/json"
"fmt"
"github.com/go-resty/resty/v2"
)
type VersionInfo struct {
Version string `json:"version"`
VersionCode int64 `json:"versionCode"`
UpdateTime string `json:"updateTime"`
Detail string `json:"detail"`
DownloadUrl string `json:"downloadUrl"`
Md5 string `json:"md5"`
}
var info VersionInfo
// CheckVersion 查看版本更新
func CheckVersion(url string, success func(res VersionInfo), fail func(err string)) {
client := resty.New()
resp, err := client.R().
EnableTrace().
Get(url)
if err != nil {
fail("检测更新失败!" + err.Error())
} else {
if resp.StatusCode() == 200 && len(resp.Body()) > 0 {
err = json.Unmarshal(resp.Body(), &info)
if err != nil {
fail(err.Error())
} else {
success(info)
}
} else {
fail("检测更新失败!code:" + fmt.Sprintf("%v", resp.StatusCode()))
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化