-1

json を HttpRequest から作成した構造体に取得する最も簡単な方法は何ですか。ここにmain.rsがあります

#[actix_rt::main]
async fn main() -> std::io::Result<()> {
  HttpServer::new(|| {
    App::new()
      .data(web::JsonConfig::default().limit(4096))
      .data(connect())
      .service(web::resource("/insert").route(web::post().to(handlers::tours::insert)))
  })
  .bind("127.0.0.1:8088")
  .unwrap()
  .run()
  .await
}

そして、ここに model/tour.rs の構造体があります:

#[derive(Serialize, Deserialize, Insertable)]
pub struct TourForm {
  pub name: String,
}

そして、これが handlers/tours.rs のハンドラーです::

pub async fn insert(
  tour_form: web::Json<TourForm>,
  pool: web::Data<MysqlPool>,
) -> Result<HttpResponse, HttpResponse> {
  Ok(HttpResponse::Ok().json(&tour_form.name))
}

このバリエーションを試したのは、これによりコードが非常にシンプルになると思ったからです。

pub async fn insert(
  tour_form: TourForm,
  pool: web::Data<MysqlPool>,
) -> Result<HttpResponse, HttpResponse> {
  Ok(HttpResponse::Ok().json(&tour_form.name))
}

しかし、エラーが発生しました:

^^ the trait `actix_web::extract::FromRequest` is not implemented for `model::tour::TourForm`

FromRequest 関数を TourForm 構造体に実装する必要がありますか、それとももっと簡単な方法がありますか?

4

1 に答える 1