mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 08:10:58 +00:00
fix the issue #2995
This commit is contained in:
parent
f16688817a
commit
0bde9cbd91
@ -75,7 +75,8 @@ func addModelFields(mi *modelInfo, ind reflect.Value, mName string, index []int)
|
||||
break
|
||||
}
|
||||
//record current field index
|
||||
fi.fieldIndex = append(index, i)
|
||||
fi.fieldIndex = append(fi.fieldIndex, index...)
|
||||
fi.fieldIndex = append(fi.fieldIndex, i)
|
||||
fi.mi = mi
|
||||
fi.inModel = true
|
||||
if !mi.fields.Add(fi) {
|
||||
|
Loading…
Reference in New Issue
Block a user