2 Star 1 Fork 0

法马智慧/fmgo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
yaml.go 443 Bytes
一键复制 编辑 原始数据 按行查看 历史
Asdybing 提交于 2022-01-21 13:34 . no commit message
package yamlx
import (
"errors"
"io/ioutil"
"gitee.com/fmpt/fmgo/filex"
"gopkg.in/yaml.v2"
)
// Load 加载yaml文件 path: 文件路径 data :对象地址
func Load(path string, data interface{}) error {
if !filex.IsExist(path) {
return errors.New("file not found")
}
yamlFile, err := ioutil.ReadFile(path)
if err != nil {
return err
}
err = yaml.Unmarshal(yamlFile, data)
if err != nil {
return err
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fmpt/fmgo.git
git@gitee.com:fmpt/fmgo.git
fmpt
fmgo
fmgo
v1.2.10

搜索帮助