With AngularJs + Web API, why we need ASP.NET MVC and IIS?

后端 未结 2 528
庸人自扰
庸人自扰 2021-02-10 05:56

With AngularJs + Web API, why we need ASP.NET MVC and IIS?

Can I just use AngularJS plus WEB API to develop a web application without IIS and ASP.NET MVC ?

2条回答
  •  名媛妹妹
    2021-02-10 06:53

    With AngularJs + Web API, why we need ASP.NET MVC and IIS?

    By off-loading all the logic onto the client without providing a server side fallback, you cause the site to break when the JS doesn't load, including for search engine indexing bots.

    Can I just use AngularJS plus WEB API to develop a web application without IIS and ASP.NET MVC ?

    Yes, it will just be fragile and invisible to search engines.

提交回复
热议问题