I'm building out an AngularJS app that uses data from a parse-server backend. I retrieve any data through services, which can be called from my controllers. But due to how Parse objects work all properties are accessed through a get function, and my html becomes filled with lines like <p>{{myObject.get('title')}</p>}
.
Ideally I would like to access properties just like a regular object e.g. myObject.title
, but I can't seem to find a reference for best practices when using the Parse JS sdk with AngularJS.
My searches have turned up several people pointing to this example of Parse and AngularJS boilerplate by BRANDiD but links to their actual code and site seem to be dead.
Any insight into how this is best approached would be much appreciated!