Using AngularJS module for Nuxeo platform
I've been working on developping an angular application following this tutorial : https://doc.nuxeo.com/display/NXDOC/Developing+with+AngularJS and using the samples from the following page : https://github.com/nuxeo-sandbox/angular-nuxeo
From that, I could :
- List all document from a folder
- Fetch a document from a folder
However, I couldn't find any example about CRUD methods on documents, or on users. These examples does not seem to work on Nuxeo 6 using the AngularJS module : https://github.com/dmetzler/nuxeo-book
Could I get any exemples on what's possible using the AngularJS module for the Nuxeo Automation and REST API. My id is to create a frontend portal of the Nuxeo platform for end users.
There was a typo in the angular-nuxeo client. It has been fixed. Just update the client in your project and it should work.
Here is the code included in my controller below :
nuxeoClient.operation('User.Get').execute().then(function(user) {
// OK, return specified user
console.dir(user);
}, function(err) {
// NOK, return error
console.log('Error: ' + err);
});
Any idea ?
However, it seems that the user properties are not included anymore in the return..
I’m getting “ReferenceError: callback is not defined” in the Javascript console of the web browser.