我有一个POST
API,看起来像这样:
[Route("api/Review/post")]
[HttpPost]
[AcceptVerbs("POST")]
// POST: api/Review
[ResponseType(typeof(review))]
public IHttpActionResult Postreview(review review)
{
if (!ModelState.IsValid)
{
return BadRequest(ModelState);
}
db.review.Add(review);
try
{
db.SaveChanges();
}
catch (DbUpdateException)
{
if (reviewExists(review.rating_id))
{
return Conflict();
}
else
{
throw;
}
}
return CreatedAtRoute("DefaultApi", new { id = review.rating_id }, review);
}
在表单上,我有一个按钮,该按钮从表单上的字段中绘制,以通过POST
API运行。看起来像这样:
protected void Button1_Click(object sender, EventArgs e)
{
void Add_Review(int ap_id, int usr, string val, DateTime revdate, double scr, string com)
{
if (ap_id == 0)
{
throw new ArgumentException(message: "Please select a site");
}
if (string.IsNullOrEmpty(com))
{
throw new ArgumentException(message: "Please add a comment.");
}
using (var client = new HttpClient())
{
review r = new review
{
site_id = ap_id,
usr_id = usr,
valid = val,
review_date = revdate,
score = scr,
comments = com
};
client.BaseAddress = new Uri("http://localhost:#####/");
var response = client.PostAsJsonAsync("api/Review/post", r).Result;
if (response.IsSuccessStatusCode)
{
Console.Write("Success");
Response.Redirect("ReviewSubmitted.aspx");
}
else
Console.Write("Error");
}
}
int usrid;
usrid = Convert.ToInt32(ConfigurationManager.AppSettings["TestUserID"]);
Add_Review(Convert.ToInt16(AirportList.SelectedValue),
usrid,
"Y",
Convert.ToDateTime(DateTime.Now.ToString("M/d/yyyy")),
Convert.ToDouble(textScore.Text),
textComments.Text);
}
当我单击按钮时,我希望它返回“成功”并将我重定向到我的ReviewSubmitted.aspx
页面。但是,即使POST
运行成功,当它返回到button_click
方法时,它仍然告诉我我有500错误。
我已在数据库中验证POST成功。这只是一个永远不会去的个人项目,因此我也可以告诉它在失败时进行重定向,但是出于明显的原因,我不想这样做。
我在这里想念什么?为什么POST
出现问题,但仍然说有错误?
答案 0 :(得分:0)
我发现了问题。我首先发现一个问题,该问题使我开始下载Advanced REST Client(ARC)。
然后,我能够确定API返回JSON内容中的实际错误是什么
/etc/issue
,这是为我解决的问题: