C# Web api post 参数始终为空



我正在使用令牌在 c# 中做一个 Web API,但我需要接收我的方法的邮递员参数

 [HttpPost, Route("api/cobro/saveEmail")]
    public IHttpActionResult SaveEmailForDiscount([FromBody] string email)
    {
        //do something with e-mail
        return Ok(email);
    }

但电子邮件始终为空

这是邮递员的请求

POST /api/cobro/saveEmail HTTP/1.1
Host: localhost:53107
Content-Type: application/x-www-form-urlencoded
Cache-Control: no-cache
Postman-Token: 881045b2-0f08-56ac-d345-ffe2f8f87f5e
email=jose%40gm.com

这是我的启动类,其中所有配置

    using System;
using Microsoft.Owin;
using Owin;
using Microsoft.Owin.Security.OAuth;
using System.Web.Http;
using System.Net.Http.Headers;
[assembly: OwinStartup(typeof(Cobros_BackEnd.Startup))]
namespace Cobros_BackEnd
{
    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {

     app.UseCors(Microsoft.Owin.Cors.CorsOptions.AllowAll);
        var MyProvider = new AuthorizationServerProvider();
        OAuthAuthorizationServerOptions options = new OAuthAuthorizationServerOptions
        {
            AllowInsecureHttp = true,
            TokenEndpointPath = new PathString("/token"),
            AccessTokenExpireTimeSpan = TimeSpan.FromDays(1),
            Provider = MyProvider
        };
        app.UseOAuthAuthorizationServer(options);
        app.UseOAuthBearerAuthentication(new OAuthBearerAuthenticationOptions());
        HttpConfiguration config = new HttpConfiguration();
        config.Formatters.JsonFormatter.SupportedMediaTypes
        .Add(new MediaTypeHeaderValue("text/xml"));
        //get all users
        config.Routes.MapHttpRoute(
            name: "Users",
            routeTemplate: "api/{controller}/users",
            defaults: new { id = RouteParameter.Optional }
            );

        WebApiConfig.Register(config);
    }
  }
}

我在GET中使用其他方法并且一切正常,但我需要在POST上使用它

您可以像这样创建一个类包装器电子邮件字段

public class SaveEmailModel{
    public string Email{get;set;}
}
public IHttpActionResult SaveEmailForDiscount([FromBody] SaveEmailModel model){
...
}

在您的请求正文中尝试此操作:=何塞%40克.com

Web API 在帖子正文中传递简单类型时效果不佳。您需要实际实现自定义数据绑定器才能执行此操作。我刚刚提出的是一种解决方法。我避免在 Web API 中不惜一切代价在正文中发布简单类型。Id 更喜欢创建一个模型对象,然后以 JSON 格式发送数据,这些数据将映射到我的模型。您也可以使用 [FromUri] 并在 url 中传递字符串。

相关内容

  • 没有找到相关文章

最新更新