I'm trying to find out some examples of crud application that wired up with backend like mysql php or something like that. I found 1 example https://github.com/ccoenraets/angular-cellar but got an error in console and dont know to fix. Have you some useful links?
-
the 'CRUD' part of an Angular JS app is going to be highly dependent on your backend. I'm guessing you're coding the backend in PHP?Roy Truelove– Roy Truelove2013年05月20日 14:25:48 +00:00Commented May 20, 2013 at 14:25
-
yep, but not care, that can be anythingsocm_– socm_2013年05月20日 14:28:34 +00:00Commented May 20, 2013 at 14:28
-
A google search for AngularJS CRUD gave me quite a few useful links. You'll have to be more specific about what you've already tried.Roy Truelove– Roy Truelove2013年05月20日 14:32:01 +00:00Commented May 20, 2013 at 14:32
-
Did you see builtwith.angularjs.org ? some of them have a link to github too. AngularJS is specially good for CRUD because of the two-way data binding.Eduard Gamonal– Eduard Gamonal2013年05月20日 19:12:14 +00:00Commented May 20, 2013 at 19:12
-
I threw up a CRUD seed for a cross domain angular/django app, you can clone it and check out how it works. github.com/zackargyle/angularjs-django-rest-framework-seedZack Argyle– Zack Argyle2013年08月06日 22:08:58 +00:00Commented Aug 6, 2013 at 22:08
2 Answers 2
If your backend exposes a RESTful API, ng-admin can be the solution.
https://github.com/marmelab/ng-admin
It's open-source, is very easy to customize, and does more than simple CRUD. It's actually designed to build complete backend administrations on top of REST APIS.
Comments
I can give you some links with a Ruby On Rails CRUD implementation:
If you have to use PHP, you could try to understand how the application are structures and try to reproduce the same.
Hope this helps