If you check the popularity of angular ractive react etc at github you have a winner:
ANGULAR!!
Big community, videos ,books etc
And
JOBS!!
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups "web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to web2py+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to a topic in the Google Groups "web2py-users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/web2py/LCXnVnIeLl4/unsubscribe.
To unsubscribe from this group and all its topics, send an email to web2py+un...@googlegroups.com.
@backboners: declaring models twice is not something I'd do for living ;-D
--
var module = angular.module('myapp', []);module.service('userService', function(){});
// controller #1
module.controller('FooController', function($scope, userService){
$scope.data = userService.api.success(function(data) .etc.. );
});// controller #2module.controller('BarController', function($scope, userService){ $scope.my_scope = userService.api.success(function(data) .etc.. );}); <input type="text" ng-model="yourName" placeholder="Enter a name here">
"I am tempted to say Angular is to Django as Ractive is to web2py."
module.controller('FooController', function($scope, userService){
$scope.data = userService.api.success(function(data) .etc.. ); });<input type="text" value="{{yourName}}" placeholder="Enter a name here"> <h1>Hello {{yourName}}!</h1>To unsubscribe from this group and all its topics, send an email to web2py+unsubscribe@googlegroups.com.
angular has routing and other functioinalities that web2py already has.
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups "web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to web2py+un...@googlegroups.com.
My POV is that web2py should have a rather agnostic attitude toward a wide range of frameworks, by having some kind of layer that would allow to keep server side code mostly untouched when changing js framework, easily add support for a new js framework.
In practice web2py should use a well defined protocol between client and server, to pass actions, messages and events back and forth.
What is this post is all about regarding web2py? Just went over my head!
That will be a cool concept!:-). I would love to see its done.