[HttpPost]
public async Task<string> Post()
{
    dynamic model = await Request.Content.ReadAsAsync<JObject>();
    BodyParam param = new BodyParam();
    param.Weight = model.weight;
    param.Datetime = model.day;

return "success";
}

 

相关文章:

  • 2022-12-23
  • 2021-06-18
  • 2022-12-23
  • 2021-07-31
  • 2021-07-16
  • 2021-06-30
  • 2021-12-05
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-25
  • 2022-02-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案