在 Azure 移动应用服务中添加多个 api

Add more than one api in Azure Mobile App Service

我还是 Azure 移动应用服务的新手,我对 Azure 移动应用服务有疑问,我们可以制作 2 Api 并将其发布到 Azure 移动应用服务吗?例如我的应用服务是 http://netbackends.azurewebsites.net and i have 2 Web Api that i want to add in the App Service, for instance the web api is one for CRUD users data and the other one is for Payment. Can we do that in App service ? And make Endpoint for calling the Api, example http://netbackends.azurewebsites.net/CRUD or http://netbackends.azurewebsites.net/payment ,或者我们只能在应用服务中有一个 Api ?

And make Endpoint for calling the Api, example http://netbackends.azurewebsites.net/CRUD or http://netbackends.azurewebsites.net/payment

当然,我们可以根据需要添加自定义 API。以下是如何为移动应用程序添加自定义 API 的演示。您也可以参考此 book 以获取更多信息。

1.Create 带有 VS 的移动应用程序

2.Add自定义控件

3.If我们要使用自定义路由路径我们可以在 Startup.MobileApp.cs 文件

config.MapHttpAttributeRoutes();
settings.SkipVersionCheck = true; //just for test

  1. 在控件中添加映射路由

  1. 将其作为移动服务发布到 Azure 并查看结果。