兄弟属性に基づいてスカラ リフトを使用して以下の json を変換するにはどうすればよいですか? 以下のjsonで、兄弟属性「type」が「html」の場合、「value」属性の値をエンコードしたい
val json = """
{
"id" : "1B23423B",
"payload" : {
"list" : [ {
"name" : "test",
"data" : [ {
"value" : "Some html",
"type" : "html",
}, {
"value" : "some text",
"type" : "text"
}]
}]
}
}
"""
def encode(s:String):String = s + "encoded"
val newjson = js.transform {
case x if x == JField("type",JString("html")) => // somehow encode value??
}
println(newjson)