Rust处理JSON

简介: Rust处理JSON

基本操作


Cargo.toml:

[package]
name = "json"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
warp = "0.3"

main.rs:

use serde::{Deserialize, Serialize};
#[derive(Debug, Deserialize, Serialize)]
struct Person {
    name: String,
    age: i64,
}
fn main() {
    let json_str = r#"
            {
            "name": "dashen",
            "age": 18
            }
   "#;
    let person: Person = serde_json::from_str(json_str).unwrap();
    println!("{:?}", person)
}

输出为:

Person { name: "dashen", age: 18 }

嵌套结构体


warp

use serde::{Deserialize, Serialize};
use warp::Filter;
#[derive(Debug, Deserialize, Serialize)]
struct Person {
    name: String,
    age: i64,
}
#[derive(Debug, Deserialize, Serialize)]
struct Demo {
    name: String,
    person: Person,
}
#[tokio::main]
async fn main() {
    let hello = warp::path!("json")
        .map(|| warp::reply::json(
            &Demo {
                name: "geek".to_string(),
                person: Person {
                    name: "dashen".to_string(),
                    age: 28,
                },
            }
        ));
    warp::serve(hello)
        .run(([127, 0, 0, 1], 3030)).await;
}

微信截图_20230925145124.png

微信截图_20230925145138.png

返回不同的结构(一般用枚举来解决)

use serde::{Deserialize, Serialize};
use warp::Filter;
#[derive(Debug, Deserialize, Serialize)]
struct Person {
    name: String,
    age: i64,
}
#[derive(Debug, Deserialize, Serialize)]
struct Demo {
    name: String,
    person: Person,
    shape: Shape,
}
#[derive(Debug, Deserialize, Serialize)]
#[serde(rename_all = "lowercase", tag = "shape")] // 处理成小写,同时加一个tag区分啥形状
enum Shape {
    Circle {
        radius: f64,
    },
    Rectangle {
        length: f64,
        width: f64,
    },
}
#[tokio::main]
async fn main() {
    let hello = warp::path!("json")
        .map(|| warp::reply::json(
            &Demo {
                name: "geek".to_string(),
                person: Person {
                    name: "dashen".to_string(),
                    age: 28,
                },
                shape: Shape::Circle {
                    radius: 3.5
                },
            }
        ));
    warp::serve(hello)
        .run(([127, 0, 0, 1], 3030)).await;
}

微信截图_20230925145225.png

目录
相关文章
|
JSON 数据格式 Python
Python处理数据json
Python处理数据json
53 0
|
3月前
|
JSON Go 数据格式
[golang]标准库-json
[golang]标准库-json
|
3月前
|
JSON 数据格式 Python
python处理类似json的文件
python处理类似json的文件
|
5月前
|
Web App开发 JSON JavaScript
|
JSON Go 数据格式
Golang 语言怎么高效读写 JSON 字符串?
Golang 语言怎么高效读写 JSON 字符串?
74 0
|
JSON JavaScript 前端开发
【Python】一文带你了解并使用 Json 模块
python的json模块是python官方提供的一个用于解析和生成JSON数据格式的库。JSON是JavaScript对象表示法(JavaScript Object Notation)的缩写,是一种轻量级的数据交换格式,常被用于Web应用程序中,也被广泛地应用于非Web应用程序中。python的json库可以方便地将python中的数据转换为JSON格式数据,并支持将JSON格式数据转换为python中的数据类型。
374 0
【Python】一文带你了解并使用 Json 模块
|
JSON JavaScript 前端开发
python中的JSON模块详解
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式,它使得人们很容易的进行阅读和编写同时也方便了机器进行解析和生成。适用于进行数据交互的场景,比如网站前台与后台之间的数据交互。
105 0
|
XML JSON JavaScript
【Python】基础知识(JSON)
俗话说,欲先善其事,必先利其器。作为一个小白,当选择了一门语言来学习的时候,我们的电脑得安装这个语言。「Python」 是一门编程语言,可以在服务器上使用 Python 来创建 Web 应用程序
【Python】基础知识(JSON)
|
JSON 数据格式 Python
python json 模块
json模块作用
68 0
|
JSON Go 数据格式
Go语言JSON 处理
Go语言JSON 处理
153 0