#mini #we-chat #wx

wx_mini_api

微信小程序api wasm接口

1个不稳定版本

0.1.27 2024年7月26日

#230 in WebAssembly

Download history 83/week @ 2024-07-20 57/week @ 2024-07-27

每月140次下载

MIT许可证

53KB
1.5K SLoC

微信小程序api wasm封装

微信小程序请求使用示例

    use wx_mini_api::prelude::*;

    #[derive(Default, Serialize, Debug)]
    #[serde(rename_all = "kebab-case")]
    struct Header {
        content_type: String,
    }
    let header = Header {
        content_type: "application/json".to_string(),
    };
    let req: Request<serde_json::Value, serde_json::Value> = Request {
        url: "your_url",
        ..Default::default()
    };
    let res: Response<serde_json::Value> = wx_request(req).await.unwrap();

依赖项

~1.5–4MB
~72K SLoC