これが私の設定とコードです。
public class DeployLogController : ApiController
{
// GET /api/DeployLog
public List<DeployLogModel> Get(Guid deployDetailId, Guid? deployLogId)
{
DeployLogService service = DeployLogService.Instance;
return service.GetNewestDeployLogs(deployDetailId, deployLogId).ToList();
}
// POST /api/DeployLog
public void Post(DeployLogModel deployLogModel)
{
DeployLogService service = DeployLogService.Instance;
service.SavaDeployLogByServer(deployLogModel);
}
}
Global.asax.csのApplication_Startのコードは以下のとおりです。
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Login", action = "Login", id = UrlParameter.Optional }
);
}
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RegisterGlobalFilters(GlobalFilters.Filters);
RegisterRoutes(RouteTable.Routes);
BundleTable.Bundles.RegisterTemplateBundles();
Configure(GlobalConfiguration.Configuration);
}
URL「http:// localhost:8119 / api/DeployLog」にアクセスしたときに400Http応答メッセージが表示されたのはなぜですか。コードのようです
routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
動作しません。何かが恋しかったですか?私を助けてください 。ありがとう。