Hallo Forum,
ich habe eine Problem mit einem api-Methoden-Aufruf via ajax. Ich bekomme da die Meldung Bad Request:
$(document).ready(function() {
$("#form1").submit(function (e) {
$.ajax({
type: "GET",
url: 'http://localhost:4627/api/MyController/Edit',
contentType: "application/json; charset=utf-8",
dataType: 'json',
data: { content: $('#form1').serialize() } ,
cache: false,
success: function (data) {
alert(data);
},
error: function (x, status, error) {
alert("Error: " + error);
}
});
});
});
[HttpPost]
[ActionName("Edit")]
public IHttpActionResult Put(FormDataCollection content)
{
....
}
Sieht da jemand etwas fehlerhaften? Danke im Voraus.
Hruß