用过的同学,喜欢用哪个库写 rust web 后端代码?

用过的同学,喜欢用哪个库写 rust web 后端代码?
1 ihciah Apr 18, 2022 via iPhone 常规业务: axum/rocket thread-per-core: actix-web |
2 oksbsb Apr 24, 2022 poem |
3 louzhumuyou OP @oksbsb sea-orm select 出的数据,为啥无法打印里面的 key 对应的 values 值? ``` let posts = Post::find() .all(&state.conn).await; for cc in posts.iter() { println!("数据呢,在哪里呀{:?}\n", cc); } ``` 结果是 [Model { id: 2, title: "fdfagd", text: "gagdd" }] 但是我执行 ``` let posts = Post::find() .all(&state.conn).await; for cc in posts.iter() { print!("数据呢,在哪里呀{:?}\n", cc.id); print!("数据呢,在哪里呀{:?}\n",cc.title); } ``` 就 cargo check 说没有对应的 id 和 title ? |
4 akaHenry Jun 13, 2022 axum + diesel. https://github.com/better-rs/learn-rs/blob/main/crates/rs-cms/readme.md 我这写了个小型 CMS. 还没写完. 做了设计部分. 可以看看. |
5 IIInsomnia Apr 19, 2024 肯定用这个呀,开箱即用! https://github.com/shenghui0779/api-tpl-rs |