ASP. NET Ядро 3.1 получает пустое тело - PullRequest
0 голосов
/ 16 февраля 2020

Приведенный ниже код, который обобщен для лучшего понимания, прекрасно работает с LOCALHOST, однако, когда я помещаю его в IIS, тело запроса всегда приходит EMPTY. Кто-нибудь может мне помочь?

Код клиентского приложения:

  login(userName: string, password: string): Observable<User> {

    const headers = new HttpHeaders({
      'Content-Type': 'application/json'
    });

    return this.http.post(`${environment.API_URL}/profiles/login`,
      { userName, password }, { headers }
    ).pipe(
      tap((currentUser: User) => {
        this.updateUser(currentUser)
          .then(
            () => {
              console.log('currentUser login stored: ', AppSettings.currentUser);
            },
            error => console.error('Error storing currentUser login', error)
          );
        return AppSettings.currentUser;
      }),
    );
  }

ASP. NET Код приложения Core 3.1 на сервере:

    [Route("api/[controller]")]
    [ApiController]
    public class ProfilesController : ControllerBase
    {
        [HttpPost("login")]
        public async Task<ActionResult> Login(LoginRequest request)
        {
            try
            {
                using (var Reader = new StreamReader(Request.Body, Encoding.UTF8))
                {
                    var sb = new StringBuilder();

                    sb.AppendFormat("ContentType: {0}\n", Request.ContentType);
                    sb.AppendFormat("Request: {0}\n", Request.ToString());
                    sb.AppendFormat("ContentLength: {0}\n", Request.ContentLength.ToString());
                    if (Request.IsHttps)
                        sb.AppendFormat("{0}\n", "HTTPS!");

                    var headers = String.Empty;
                    foreach (var key in Request.Headers)
                        headers += key.Key + "=" + key.Value + Environment.NewLine;
                    sb.AppendFormat("Headers: \n{0}\n", headers);

                    sb.AppendFormat("QueryString: {0}\n", Request.QueryString);

                    var text = await Reader.ReadToEndAsync();
                    sb.AppendFormat("Body: {0}\n", text);
                    return Ok(sb.ToString());
                }
                return Ok("OK");
            }
            catch (System.Exception ex)
            {
                return Unauthorized($"{ex.Message}: {ex.StackTrace}");
            }
        }
    }

Результат запроса:

ContentType: application/json
Request: Microsoft.AspNetCore.Http.DefaultHttpRequest
ContentLength: 79
Headers: 
Accept=*/*
Accept-Encoding=gzip, deflate, br
Cache-Control=no-cache
Connection=keep-alive
Content-Length=79
Content-Type=application/json
Host=loja.online
User-Agent=PostmanRuntime/7.22.0
Postman-Token=121f1927-c340-492f-a98b-0d6586ff32d8

QueryString: 
Body: 

При использовании POSTMAN происходит то же самое!

Postman POST

RequestLogin class

1 Ответ

1 голос
/ 18 февраля 2020

Попробуйте указать источник:

    public async Task<ActionResult> Login([FromBody] LoginRequest request) //Added [FromBody]

Только для дополнительной информации

...