// snip ... class MyController { // snip... getValue() { this.model.getValue('titlesById[523].name') .subscribe(value => { this.value = value; this.$scope.$evalAsync(); }); } } angular.module('falcorExample', []) .controller('MyController', MyController);