1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/json
2022-08-23 07:59:50 +03:00
..
cjson json.cjson: add a submodule that allows lower level access to the cJSON library (constructing JSON trees in memory with null leafs). 2022-07-20 23:34:17 +03:00
json_decode_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
json_decode_with_encode_arg_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
json_decode_with_generic_test.v checker: fix json decoder with generic struct (#14700) 2022-06-06 19:25:02 +03:00
json_decode_with_optional_arg_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
json_decode_with_sumtype_test.v fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00
json_primitives.v json: tag functions that cgen may call internally for json.encode/json.decode, as [markused] 2022-08-02 11:45:41 +03:00
json_test.v json: minor cleanup in json_test.v (#15501) 2022-08-23 07:59:50 +03:00
README.md fmt: remove space in front of ? and ! (#14366) 2022-05-13 06:56:21 +03:00

Description:

json provides encoding/decoding of V data structures to/from JSON.

Examples:

import json

enum JobTitle {
	manager
	executive
	worker
}

struct Employee {
	name   string
	age    int
	salary f32
	title  JobTitle
}

fn main() {
	x := Employee{'Peter', 28, 95000.5, .worker}
	println(x)
	//
	s := json.encode(x)
	println('Employee x: $s')
	assert s == '{"name":"Peter","age":28,"salary":95000.5,"title":2}'
	//
	y := json.decode(Employee, s)?
	//
	println(y)
	assert y == x
}