angularjs - What is the difference between MVC in Angular JS and MVC in ASP.NET or Spring MVC? -
i'm trying understand modern web applications architecture. in asp.net mvc, business logic classes in model , controller takes , guides user requests.if using it, possible use angular js mvc architecture business logic in controller , model pojo. can angular js used web api 2 gets data restful service , manipulation on client side? architecture commonly used ?
from perspective, you're confusing 2 different technologies; 1 server-side (asp.net mvc) 1 client side (angularjs).
the 2 can used hand-in-hand neither dependent on other existing. and, iirc, there scaffolding module on nuget helps bindings 1 other (create js objects asp.net poco objects).
with being said, there no reason need use both. can 1 one or ther other, both, or bring in different technology altogether (knockoutjs, etc.)?
Comments
Post a Comment