async fn create_user(extract::Json(payload): extract::Json<CreateUser>)->impl IntoResponse{
// insert your application logic here
let user = User {
id: 1337,
username: payload.username,
};
// this will be converted into an JSON response
// with a status code of `201 Created`
(StatusCode::CREATED, response::Json(user))
}
这个参数语法是怎么写出来的? 有哪一章讲吗
1
共 5 条评论, 1 页
评论区
写评论--
👇
PrivateRookie: 左边的是值啊, 所以你参数名里的尖括号是不合法的`
懂了(.)
左边的是值啊, 所以你参数名里的尖括号是不合法的`
--
👇
WarriorOfDarkness:
--
👇
viruscamp: 书上就有模式匹配-函数参数
不一样的 我自己写一个试试
直接就语法错误
--
👇
viruscamp: 书上就有模式匹配-函数参数
不一样的 我自己写一个试试
直接就语法错误
书上就有模式匹配-函数参数
就是 match pattern