1

次のように、ajaxリクエストを介してWeb APIコントローラーでアクションを呼び出そうとしています

$.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);
        }
    }

同じコントローラーの同様のアクションは、動詞「GETAD」を別のものに変更しても、同様の ajax リクエストによって [AcceptVerbs("GETAC")] で動作しますが、これはそうではありません。

コードは次のとおりです $.ajax({ url: "/api/GuestPartyAPI/" + id, type: "GETAC", async: false, dataType: "json" });

4

1 に答える 1

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)
于 2012-09-23T08:38:59.807 に答える