如题,请使用下面的方法。
①添加依赖
[dependencies]
serde_json = "1.0.59"
②引入
use serde_json::json;
use serde_json::{Value};
③动态使用json
let mut temjson = json!({}); //创建空json
temjson.as_object_mut().unwrap().insert("姓名".to_string(), Value::String("张三".to_string()));
temjson.as_object_mut().unwrap().insert("班级".to_string(), Value::String("5班".to_string()));
temjson.as_object_mut().unwrap().insert("学习积分".to_string(), Value::String("93.5".to_string()));