angular-activerecord icon indicating copy to clipboard operation
angular-activerecord copied to clipboard

A model layer for AngularJS inspired by Backbone.Model

Results 8 angular-activerecord issues
Sort by recently updated
recently updated
newest added

Is there a way to use `angular-activerecord` with es6? BaseModel -> ChildModel ?

Please see the Defining Relations section in the README.md of my fork. Thanks! :) PS: This has no automated test but I tested it manually.

How to do infinite levels of inheritance? Like: `SubClassN -> SubClass1 -> ActiveRecord` And how to override methods and use the parent method inside the override?

Can someone show me how to override the factories $parse or the instance in a controller? Thanks ``` angular.module('app') .factory(Users', function(ActiveRecord) { return ActiveRecord.extend({ // Rest API configuration for retrieving...

Hello there, This module looks good! What would be the best approach to include meta data in an index though? For example, if the backend has the following json format...

hi, any plans for support of active-record associations? thanks! Chris

Hey, I'm unable to figure out if angular-activerecord supports nested attributes. I had to use `$http` to work around the issue but was hoping that either there is a feature...