Web API コントローラーをテストする VS2012 MVC4 ソリューションがあります。
GET、POST、PUT のテストに成功しましたが、DELETE ではまだ http 404 エラーが発生しました。API コントローラーの「DeleteMovie」アクションにブレークポイントを設定すると、ブレークポイントに到達しません。
この問題に関する多くの投稿を読みましたが、誰も助けてくれませんでした。
DELETE 用の API コントローラーは次のとおりです。
[HttpDelete]
public HttpResponseMessage DeleteMovie(int id)
{
// Delete the movie from the database
// Return status code
return new HttpResponseMessage(HttpStatusCode.NoContent);
}
これが私のhtmlページです:
<script type="text/javascript">
deleteMovie(1, function ()
{
alert("Movie deleted!");
});
function deleteMovie(id, callback) {
$.ajax({
url: "/api/Movie",
data: JSON.stringify({ id: id }),
type: "DELETE",
contentType: "application/json;charset=utf-8",
statusCode: {
204: function () {
callback();
}
}
});
}
</script>
私の古典的なルートは次のとおりです。
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
API のルーティングは次のとおりです。
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "ActionApi",
routeTemplate: "api/{controller}/{action}/{id}",
defaults: new { id = RouteParameter.Optional }
);
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
}
ソリューションのプロパティで、[IIS Express を使用する] をオンにして [ローカル IIS Web サーバーを使用する] を構成します。
「Use Visual Studio Development Server」でも試しましたが、同じ問題です。
何か案が?
ありがとう。