Combining Play! Framework 2.xx with Angular.js
问题 I am having trouble is this marriage of 2 seemingly powerful frameworks. It seems most things that can be done by 1 can be done by 2.How to best utilize the two? Are there any patterns of thinking? Take a basic example of a CRUD application -- I can write a route mysite/listnames which maps to a controller in play! and this renders a template with the code -- @(names:List[String]) @main("Welcome") { @for( name <- names ){ <p> Hello, @name </p> } Note that main is a typical bootstrapping