Azure web api VS Mobile Services

2020-06-03 05:32发布

What are the main differences when using

I'd like to build a webservice that will be used by both mobile and web client. Which should I use?

Thanks

1条回答
戒情不戒烟
2楼-- · 2020-06-03 06:18

I think the Mobile Service is mainly focus on quick mobile service development especially for those data oriented. If you want to create a mobile application quickly, with CRUD against your data on cloud, with push notification out-of-box, mobile service might be a good choice.

But if you need complex server side logic, Azure Web Site could be better. You can create your own API with your own logic by using ASP.NET MVC WebAPI, Node.js, etc.

查看更多
登录 后发表回答