You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
572 B
25 lines
572 B
7 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web.Http;
|
||
|
|
||
|
namespace WebAPI
|
||
|
{
|
||
|
public static class WebApiConfig
|
||
|
{
|
||
|
public static void Register(HttpConfiguration config)
|
||
|
{
|
||
|
// Web API 配置和服务
|
||
|
|
||
|
// Web API 路由
|
||
|
config.MapHttpAttributeRoutes();
|
||
|
|
||
|
config.Routes.MapHttpRoute(
|
||
|
name: "DefaultApi",
|
||
|
routeTemplate: "api/{controller}/{id}",
|
||
|
defaults: new { id = RouteParameter.Optional }
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|