如何替换 lift 框架中的部分 json 子树

发布于 2024-11-17 00:46:27 字数 253 浏览 1 评论 0原文

我需要使用 lift 框架(v2.3)替换 json 树的分支。例如,我想用一个新树替换“a3”分支,

{
    'a': {
      'a1': {
            'a3': . . . 
        }
    }
}

我当前正在使用 JValue 并认为我可以递归地使用折叠方法进行替换,但如果我需要替换一个分支,那么它似乎很冗长深好几层。

有更好的方法吗?

谢谢。

I need to replace a branch of a json tree using the lift framework (v2.3). For example, I'd like to replace the "a3" branch with a new tree

{
    'a': {
      'a1': {
            'a3': . . . 
        }
    }
}

I am currently using a JValue and think I can do the replacement using the fold method recursively, but it seems verbose if I need to replace a branch that is several levels deep.

Is there a better way to do this?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜未央樱花落 2024-11-24 00:46:27

没有其他人回答,我找到了一个不错的解决方案来分享:

import net.liftweb.json.JsonParser._
import net.liftweb.json.JsonAST._
import net.liftweb.json.Printer._

// change any a3 fields at any depth of the tree
compact(render(a.transform {
    case JField("a3", _) => JString("changed")
}))

// String = {"a":{"a1":{"a3":"changed"}}}

// will only change a.a1.a3
compact(render(a.transform {
    case JField("a", lvl2) =>  lvl2 transform {
        case JField("a1", lvl3) => lvl3 transform {
            case JField("a3", _) => JString("changed")
        }
    }
}))
// String = {"a":{"a1":{"a3":"changed"}}}

No one else has answered, and I found a decent solution to share:

import net.liftweb.json.JsonParser._
import net.liftweb.json.JsonAST._
import net.liftweb.json.Printer._

// change any a3 fields at any depth of the tree
compact(render(a.transform {
    case JField("a3", _) => JString("changed")
}))

// String = {"a":{"a1":{"a3":"changed"}}}

// will only change a.a1.a3
compact(render(a.transform {
    case JField("a", lvl2) =>  lvl2 transform {
        case JField("a1", lvl3) => lvl3 transform {
            case JField("a3", _) => JString("changed")
        }
    }
}))
// String = {"a":{"a1":{"a3":"changed"}}}
若有似无的小暗淡 2024-11-24 00:46:27

lift-json JValue 类有一个替换方法。

val data = ...
val replacement = ...

val newData = data.replace("a" :: "a1" :: "a3" :: Nil, replacement)

The lift-json JValue class has a replace method.

val data = ...
val replacement = ...

val newData = data.replace("a" :: "a1" :: "a3" :: Nil, replacement)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文