我在Angular 6中的http.post方法遇到问题,没有到达我的控制器。 http.get可以正常工作。在客户端浏览器的“诊断”网络标签中没有看到错误。
角度服务代码:
saveResponse(response: Response): Observable<any> {
const body = JSON.stringify(response);
return this.http.post(this.postResponseUrl, body, httpOptions)
.pipe(catchError(this.handleError));
}
当我调试“ this.postResponseUrl”时,它显示为“ http://localhost:xxxx/api/surveyresponses”,
ASP.NET API中的控制器
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Cors;
using Microsoft.AspNetCore.Mvc;
using survey.Data;
using survey.Interfaces;
using survey.Model;
namespace survey.Controllers
{
[Produces("application/json")]
[Route("api/[Controller]")]
[EnableCors("AllowSpecificOrigin")]
public class SurveyResponsesController : Controller
{
public ISurveyResponseRepository _surveyResponseRepository;
public SurveyResponsesController(ISurveyResponseRepository surveyResponseRepository)
{
_surveyResponseRepository = surveyResponseRepository;
}
[HttpGet]
public async Task<IEnumerable<SurveyResponse>> Get()
{
return await _surveyResponseRepository.GetResponses();
}
[HttpGet("{id}", Name = "GetById")]
public async Task<SurveyResponse> GetById(int id)
{
return await _surveyResponseRepository.GetResponseById(id);
}
[HttpPost]
public async Task<IActionResult> Create([FromBody] SurveyResponse response)
{
try
{
await _surveyResponseRepository.AddResponse(response);
return CreatedAtRoute("GetById", new { id = response.responseId }, response);
}
catch (Exception ex)
{
throw ex;
}
}
}
}
我在控制器代码中有一个断点,并且从未命中。这不是CORS的问题,因为我有“ EnableCors”控制器的属性。
我已经使用Postman测试了api,并且可以正常击中控制器。在VS 2017中从应用程序的客户端调用时,将无法正常工作。关于为什么我看不到请求到达控制器/操作的任何想法?
谢谢。