loopbackjs - Remote method for updating all records -


i try make custom endpoint, adds bonus all employee. , retorns employee records, endpoint. /employees/bonus

as understand; should make remote method this:

common/models/employee.js

employee.bonus = function(cb){   // logic comes here   cb(null,"") }  employee.remotemethod(   'bonus',{} ) 

this makes endpoint, how can request employees, loop them through , increase salary property?

query employee model, apply filter if need, loop through results.

employee.find(   filter,    function(err,employees) {     if(err){       console.log(err);     }     employees.foreach(       function(employee){          fnincsalary(employee.salary);         //do employee instance       }     );   } ); 

http://docs.strongloop.com/display/public/lb/querying+data


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -