Home > Software design >  What is my controller action(.NET 6.0) and AJAX call returning 500 error?
What is my controller action(.NET 6.0) and AJAX call returning 500 error?

Time:09-17

I have an ajax call (GET) to a controller action to generate and return a url (JSON). When I run the code the ajax call goes but it never hits the controller action. I get a 500 error with no response text. I'm stumped. Below is my code, Thanks!

    [HttpGet] 
    public ActionResult ViewOrderForm(int? id)
    {
        if (id == null || id == 0)
        {
            _logger.LogInformation("Order Id "   id   " does not exisit in the database. User is unable to view form.");
            return NotFound("Order Id "   id   " does not exisit in the database.");
        }

        return Json(new
        {
            newUrl = Url.Action("ViewOrder", new { id = id })
        }
        );

    }

function viewOrderForm(id) {
$.ajax({
    url: siteURLS.ViewOrderForm,
    method: "GET",
    data: {
        id: id
    },
    error: function (e) {
        alert("Unable to open ITO form. "   e.responseText);
    }
}).done(function (data) {
    //alert(data.newUrl);
    window.location.replace(data.newUrl);
});
}

CodePudding user response:

Believe its type instead of method in ajax property

CodePudding user response:

try this ajax,

 $.ajax(
 {
  url: siteURLS.ViewOrderForm "?id=" id,
  type: 'GET', 
  dataType: 'json',
 success: function (data) {
     window.location.replace(data.newUrl);
},
 error: function (e) {
        alert("Unable to open ITO form. "   e.responseText);
    }
 });
  • Related