fix
This commit is contained in:
parent
83bfa8977c
commit
c1de53c098
|
@ -161,7 +161,7 @@ func (l *GetTemplatevDetailLogic) GetTemplatevDetail(req *types.GetTemplatevDeta
|
||||||
optionModelInfoList := make([]interface{}, 0, len(model3dList))
|
optionModelInfoList := make([]interface{}, 0, len(model3dList))
|
||||||
for _, v := range model3dList {
|
for _, v := range model3dList {
|
||||||
info := make(map[string]interface{})
|
info := make(map[string]interface{})
|
||||||
if v.ModelInfo != nil {
|
if v.ModelInfo != nil && *v.ModelInfo != "" {
|
||||||
if err = json.Unmarshal([]byte(*v.ModelInfo), &info); err != nil {
|
if err = json.Unmarshal([]byte(*v.ModelInfo), &info); err != nil {
|
||||||
logx.Error(err)
|
logx.Error(err)
|
||||||
return resp.SetStatusWithMessage(basic.CodeServiceErr, "failed to parse model info")
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, "failed to parse model info")
|
||||||
|
|
|
@ -7,11 +7,11 @@ import (
|
||||||
// 字符串切片转int切片
|
// 字符串切片转int切片
|
||||||
func StrSlicToIntSlice(input []string) ([]int, error) {
|
func StrSlicToIntSlice(input []string) ([]int, error) {
|
||||||
newSlic := make([]int, 0, len(input))
|
newSlic := make([]int, 0, len(input))
|
||||||
for _, p := range input {
|
for _, element := range input {
|
||||||
if p == "" {
|
if element == "" {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
val, err := strconv.Atoi(p)
|
val, err := strconv.Atoi(element)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -23,11 +23,11 @@ func StrSlicToIntSlice(input []string) ([]int, error) {
|
||||||
// 字符串切片转int64切片
|
// 字符串切片转int64切片
|
||||||
func StrSlicToInt64Slice(input []string) ([]int64, error) {
|
func StrSlicToInt64Slice(input []string) ([]int64, error) {
|
||||||
newSlic := make([]int64, 0, len(input))
|
newSlic := make([]int64, 0, len(input))
|
||||||
for _, p := range input {
|
for _, element := range input {
|
||||||
if p == "" {
|
if element == "" {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
val, err := strconv.ParseInt(p, 10, 64)
|
val, err := strconv.ParseInt(element, 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user