Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Play2 add new field to JsObject

Is it possible to add new field to JsObject?

val jsonObj = Json.obj()
jsonObj.put("field" -> 100) <==== Somthing like this

I have a lot of methods that add new fields. How can I dynamically create JsObject?

like image 517
Michał Jurczuk Avatar asked Feb 27 '14 18:02

Michał Jurczuk


1 Answers

Yes, you can add a new field using the "+" method. Note that the object is immutable, so this will create a new copy of the JsObject with the added field:

val obj = Json.obj()
// obj - {}
val newObj = obj + ("name" -> JsString("Kip"))
// newObj - {"name":"Kip"}
like image 176
kipsigman Avatar answered Oct 18 '22 04:10

kipsigman