Closed blaasvaer closed 6 years ago
I can't seem to figure out how to access data in the view when using _this.$get ...
_this.$get
function view_something () { _this.$get(_this, _this.callback('/timetracker/projects')); }
Yes, adding a preceding slash, as the path is broken without it.
How is this transferred to the browser?
function view_something () { var options = {}; this.$get(options, this.callback('/timetracker/projects')); }
I can't seem to figure out how to access data in the view when using
_this.$get
...Yes, adding a preceding slash, as the path is broken without it.
How is this transferred to the browser?