我正在Vec<Bookable>
使用柴油库查询我的数据库并获取一个结构。
#[derive(QueryableByName)]
pub struct Bookable {
#[sql_type = "BigInt"]
pub id: i64,
#[sql_type = "Text"]
pub title: String
}
当我查询元素时,我可以访问结果,但无法将其转换Vec<Bookable>
为json!
宏:
pub fn get_terms(conn: &MysqlConnection) -> Vec<Bookable> {
diesel::sql_query(r#"SELECT title, LAST_INSERT_ID() 'id' from bookable_term;"#)
.load::<Bookable>(conn).expect("Query failed")
}
后来我这样称呼它:
let conn = connect();
let terms = bookable::get_terms(&conn);
json!({ "data": {
"items": terms }
})
问题是如何将术语放入此对象并将整个数组发送到 API?我可以像这样对 json 进行字符串化:
"items:" &vec!["to", "be", "or", "not", "to", "be"]
但是当涉及到现有的 Vec 时,我会遇到编译器错误。我正在使用Rocket
,所以它提供了一个rocket_contrib::json::JsonValue
包含json!
宏的