| commit | 02e5c6a11f38f85a3f4adec8b34b690a59aec543 | [log] [tgz] |
|---|---|---|
| author | Adrian <adrianhyk@gmail.com> | Fri Nov 17 01:19:26 2017 +0800 |
| committer | Adrian <adrianhyk@gmail.com> | Fri Nov 17 01:19:26 2017 +0800 |
| tree | 11d9c0a36efd51cc7bc81f5285a496759302e543 | |
| parent | 2ec2e00cd6b9c37cd329ff6183dac0e7104d552e [diff] |
allow Set function to set a value even if no value previously existed
An implementation of JSON Pointer - Go language
jsonText := `{
"name": "Bobby B",
"occupation": {
"title" : "King",
"years" : 15,
"heir" : "Joffrey B"
}
}`
var jsonDocument map[string]interface{}
json.Unmarshal([]byte(jsonText), &jsonDocument)
//create a JSON pointer
pointerString := "/occupation/title"
pointer, _ := NewJsonPointer(pointerString)
//SET a new value for the "title" in the document
pointer.Set(jsonDocument, "Supreme Leader of Westeros")
//GET the new "title" from the document
title, _, _ := pointer.Get(jsonDocument)
fmt.Println(title) //outputs "Supreme Leader of Westeros"
//DELETE the "heir" from the document
deletePointer := NewJsonPointer("/occupation/heir")
deletePointer.Delete(jsonDocument)
b, _ := json.Marshal(jsonDocument)
fmt.Println(string(b))
//outputs `{"name":"Bobby B","occupation":{"title":"Supreme Leader of Westeros","years":15}}`
http://tools.ietf.org/html/draft-ietf-appsawg-json-pointer-07
The 4.Evaluation part of the previous reference, starting with ‘If the currently referenced value is a JSON array, the reference token MUST contain either...’ is not implemented.