去除右边相关数据

This commit is contained in:
白茶清欢 2023-08-28 12:21:24 +08:00
parent 78b3ae43e5
commit 81f9c552dd

View File

@ -78,7 +78,7 @@ func (df *DataFilter) Filter() (string, error) {
// 数据源路径不识数组, 多个key写入到同一个map key, 并且map key 不是以[]结尾, 自动格式化
// 目标位置, 是一个数组
if df.pathIsArrayValue(item.MapKey) {
realMapKey := strings.Trim(item.MapKey, ".[]")
realMapKey := strings.TrimRight(item.MapKey, ".[]")
if exist := jsonObject.Exists(realMapKey); !exist {
if _, err = jsonObject.ArrayP(realMapKey); nil != err {
return "", err