Posts by Gabtec • 26 points
3 posts
-
0
votes1
answer58
viewsA: Create line in a dynamic way
I’ll summarize the code a little bit, but you can use it like this: <td ... ng-repeat="item in list"> {{ generateTotal(item) }} </td> And in the controller you have to create: var list =…
-
1
votes1
answer45
viewsA: Couchdb best practices for updating related documents
The couchdb is a little different from relational databases, so the way we build the applications also changes a little. Responding to your case, what I do is create a "roles" template in the Ode…
-
-1
votes1
answer225
viewsA: Reference or embed documents in mongodb and couchdb
Long live, in couchdb there is no notion of collections as in mongodb. In couchdb you have to create 1 db for each mongodb Collection. ex.: Mongodb db_x |- collection_01 |- collection_02 In Couchdb…