Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jbro-io/parse-angular

Utilities for working with Parse.com data and AngularJS
https://github.com/jbro-io/parse-angular

Last synced: 3 months ago
JSON representation

Utilities for working with Parse.com data and AngularJS

Awesome Lists containing this project

README

        

# parse-angular
Utilities for working with Parse.com data.

Check out my [blog post](http://www.jonathanbroquist.com/integrating-parse-data-with-ng-model-in-angularjs/) for a more detailed walkthough.

## Create a new object
```
//create new contact record from string
$scope.newContact = new ParseObject('Contact', ['firstName','lastName','email']);

/* OR */

//create new contact record from parse object instance
var Contact = Parse.Object.extend('Contact');
$scope.newContact = new ParseObject(new Contact(), ['firstName','lastName','email']);
```
We can now bind $scope.newContact to any directive with ng-model to modify or display the object properties.
```

Save
```

## Retrieving records
```
var query = new Parse.Query(Parse.Object.extend('Contact'));
ParseQuery(query, {functionToCall:'first'}).then(function(obj){
$scope.newContact = new ParseObject(obj, ['firstName','lastName','email']);
});
```
This creates a query to retrieve the first record from the Contact class. The returned object is then wrapped in an instance of my ParseObject function allowing the fields to be accessed via the object properties.