adspace
How would you make an angularjs service return a promise? Write a code snippet as an example
Answer Posted / Bhup Singh
[n function MyService($q) {n this.myMethod = function() {n var deferred = $q.defer();n // Some asynchronous operation heren deferred.resolve('Result');n return deferred.promise;n }n }n]nInject MyService into your controller and call `myService.myMethod().then(function(result) {...})` to handle the promise.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the latest version of angular?
Give the example of angularjs strings?
How an object or function can get a hold of its dependencies?
What is the latest angular?
How to get and log an error in angular 4?
Angularjs dependency injection of value inside of the module.config?
How to use primeng in angular 4?
How to create angularjs filter which outputs html?
How to implement a datagrid table with angular 2 and primeng?
Which version you are using js?
How can primeng be used with angular2?
What is a dynamic route in angularjs and how do you implement it?
How to enable html5 mode in angular 1.x?