我试图通过ajax请求调用Web API Controller中的Action,如下所示
$.ajax({
url: "/api/GuestPartyAPI/" + cerid,
type: "GETAD",
async: false,
data: { Id: id, Name: name, NeedsHotel: needshotel_bool, TableNo: tableno, QR_CodeImage: qrcodeimage,
AddressLabel: addresslabel, Address_1: address1, Address_2: address2, City: city, State: state,
PostalCode: postalcode, Country: country, Email: email, Phone: phone
},
dataType: "json"
}).fail(function (jqXHR, textStatus) {
console.log(jqXHR);
console.log(textStatus);
//alert("cerid " + cerid);
//alert("Request failed: " + textStatus);
});
和控制器中的操作如下
[AcceptVerbs("GETAD")]
public HttpResponseMessage GetGuestPartyCer(int cerid, GuestParty guestparty)
{
if (ModelState.IsValid)
{
db.GuestParties.AddObject(guestparty);
db.SaveChanges();
CeremonyGuestParty ceremonygp = new CeremonyGuestParty(); //create a CeremonyGuestParty entry to link ceremony and guestparty
ceremonygp.CeremonyId = cerid;
ceremonygp.GuestPartyId = guestparty.Id;
db.CeremonyGuestParties.AddObject(ceremonygp);
db.SaveChanges();
HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.Created, guestparty);
response.Headers.Location = new Uri(Url.Link("DefaultApi", new { id = guestparty.Id }));
return response;
}
else
{
return Request.CreateResponse(HttpStatusCode.BadRequest);
}
}
同一个Controller中的类似Action正在使用[AcceptVerbs(“GETAC”)]通过类似的ajax请求而不是这个,甚至不能通过将动词“GETAD”更改为其他内容。
这是代码 $就({ url:“/ api / GuestPartyAPI /”+ id, 类型:“GETAC”, async:false, dataType:“json”});
答案 0 :(得分:0)
您的问题与使用的AcceptVerbs
无关,但路由和操作参数匹配是如何工作的:
如果某个动作参数来自路线参数,那么参数名称必须与您在路线中定义的参数名称相匹配。
所以如果你使用ApiControllers的默认路由:
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
请注意,您的路线参数名为{id}
。
因此,在您的操作中,您需要使用相同的名称id
,以便框架可以进行匹配。
只需将您的操作签名cerid
更改为id
,即可:
public HttpResponseMessage GetGuestPartyCer(int id, GuestParty guestparty)